本文整理匯總了Golang中github.com/jloup/utils.NewErrorAggregator函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewErrorAggregator函數的具體用法?Golang NewErrorAggregator怎麽用?Golang NewErrorAggregator使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了NewErrorAggregator函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Validate
func (t *TextConstruct) Validate() xmlutils.ParserError {
err := utils.NewErrorAggregator()
t.ValidateCommonAttributes(t.name, &err)
return err.ErrorObject()
}
示例2: validate
func (d *Date) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
d.Extension.Validate(&error)
return error.ErrorObject()
}
示例3: validate
func (o *OutOfLineContent) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("out of line", &error, o.Type, o.Src)
return error.ErrorObject()
}
示例4: Validate
func (u *UnescapedContent) Validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
u.Extension.Validate(&error)
return error.ErrorObject()
}
示例5: Validate
func (i *InReplyTo) Validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("in-reply-to", &error, i.Ref, i.Href, i.Source, i.Type)
return error.ErrorObject()
}
示例6: ProcessStartElement
func (i *InlineOtherContent) ProcessStartElement(el xmlutils.StartElement) (xmlutils.Visitor, xmlutils.ParserError) {
err := utils.NewErrorAggregator()
if i.depth.IsRoot() {
for _, attr := range el.Attr {
switch attr.Name.Local {
case "type":
i.Type.Value = attr.Value
i.Type.IncOccurence()
}
}
} else {
if error := i.Encoder.EncodeToken(el); error != nil {
err.NewError(xmlutils.NewError(XHTMLEncodeToStringError, "cannot encode XHTML"))
}
if i.depth.Level > 0 {
i.hasChild = true
}
}
i.depth.Down()
return i, nil
}
示例7: validate
func (s *Source) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("source", &error, s.Url)
s.Extension.Validate(&error)
return error.ErrorObject()
}
示例8: validate
func (e *Enclosure) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("enclosure", &error, e.Url, e.Length, e.Type)
e.Extension.Validate(&error)
return error.ErrorObject()
}
示例9: validate
func (c *Channel) validate() xmlutils.ParserError {
err := utils.NewErrorAggregator()
xmlutils.ValidateOccurenceCollection("channel", &err, c.Occurences)
c.Extension.Validate(&err)
return err.ErrorObject()
}
示例10: validate
func (d *Date) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
d.Extension.Validate(&error)
d.ValidateCommonAttributes("date", &error)
return error.ErrorObject()
}
示例11: validate
func (c *Category) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("category", &error, c.Domain)
c.Extension.Validate(&error)
return error.ErrorObject()
}
示例12: validate
func (c *Content) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
c.Extension.Validate(&error)
c.ValidateCommonAttributes("content", &error)
return error.ErrorObject()
}
示例13: validate
func (i *Image) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("image", &error, i.Url.Content, i.Title.Content, i.Link.Content, i.Width.Content, i.Height.Content, i.Description.Content)
i.Extension.Validate(&error)
return error.ErrorObject()
}
示例14: validate
func (c *Cloud) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("cloud", &error, c.Domain, c.Port, c.Path, c.RegisterProcedure, c.Protocol)
c.Extension.Validate(&error)
return error.ErrorObject()
}
示例15: validate
func (g *Guid) validate() xmlutils.ParserError {
error := utils.NewErrorAggregator()
xmlutils.ValidateElements("guid", &error, g.IsPermalink)
g.Extension.Validate(&error)
return error.ErrorObject()
}