当前位置: 首页>>代码示例>>Golang>>正文


Golang utils.NewErrorAggregator函数代码示例

本文整理汇总了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()
}
开发者ID:apognu,项目名称:xml,代码行数:7,代码来源:textconstruct.go

示例2: validate

func (d *Date) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	d.Extension.Validate(&error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:7,代码来源:date.go

示例3: validate

func (o *OutOfLineContent) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	xmlutils.ValidateElements("out of line", &error, o.Type, o.Src)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:7,代码来源:outoflinecontent.go

示例4: Validate

func (u *UnescapedContent) Validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	u.Extension.Validate(&error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:7,代码来源:unescaped.go

示例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()
}
开发者ID:apognu,项目名称:xml,代码行数:7,代码来源:inreplyto.go

示例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
}
开发者ID:apognu,项目名称:xml,代码行数:26,代码来源:inlineothercontent.go

示例7: validate

func (s *Source) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	xmlutils.ValidateElements("source", &error, s.Url)
	s.Extension.Validate(&error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:source.go

示例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()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:enclosure.go

示例9: validate

func (c *Channel) validate() xmlutils.ParserError {
	err := utils.NewErrorAggregator()

	xmlutils.ValidateOccurenceCollection("channel", &err, c.Occurences)
	c.Extension.Validate(&err)

	return err.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:channel.go

示例10: validate

func (d *Date) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	d.Extension.Validate(&error)
	d.ValidateCommonAttributes("date", &error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:dateconstruct.go

示例11: validate

func (c *Category) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	xmlutils.ValidateElements("category", &error, c.Domain)
	c.Extension.Validate(&error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:category.go

示例12: validate

func (c *Content) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	c.Extension.Validate(&error)
	c.ValidateCommonAttributes("content", &error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:content.go

示例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()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:image.go

示例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()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:cloud.go

示例15: validate

func (g *Guid) validate() xmlutils.ParserError {
	error := utils.NewErrorAggregator()

	xmlutils.ValidateElements("guid", &error, g.IsPermalink)
	g.Extension.Validate(&error)

	return error.ErrorObject()
}
开发者ID:apognu,项目名称:xml,代码行数:8,代码来源:guid.go


注:本文中的github.com/jloup/utils.NewErrorAggregator函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。