本文整理汇总了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()
}