Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AInterface ¶
type AInterface interface {
Method()
}
type CStruct ¶
type CStruct struct {
*AStruct `componego:"inject"`
Value int
PublicField1 *AStruct `componego:"inject,otherValue"`
PublicField2 *BStruct
IncorrectTag1 *AStruct `componego:"INJECT"`
IncorrectTag2 *AStruct `COMPONEGO:"inject"`
// contains filtered or unexported fields
}
func (*CStruct) GetPrivateField ¶
func (c *CStruct) GetPrivateField() AInterface
type CustomString ¶
type CustomString string
type DStruct ¶
type DStruct struct {
PublicField2 AInterface `componego:"inject"`
PublicField1 *CStruct `componego:"inject"`
}
Click to show internal directories.
Click to hide internal directories.