當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。