Package | Description |
---|---|
com.bstek.dorado.common.event |
与Web界面的客户端事件相关的实现。
|
com.bstek.dorado.config.text |
一些用于辅助字符串解析的工具类。
|
com.bstek.dorado.config.xml |
一些用于辅助XML配置文件解析和加载的工具类。
|
com.bstek.dorado.data.config |
实现数据配置文件的读取和解析相关的功能。
|
com.bstek.dorado.data.config.xml |
实现XML型数据配置文件的读取和解析相关的功能。
|
com.bstek.dorado.idesupport.parse | |
com.bstek.dorado.view |
与展现相关的基础实现。
|
com.bstek.dorado.view.config.text |
实现视图配置文件中字符串解析功能的相关对象。
|
com.bstek.dorado.view.config.xml |
实现XML型视图配置文件的读取和解析相关的对象。
|
com.bstek.dorado.view.loader |
用于为客户端提供JavaScript库和CSS文件按需装载功能的相关对象。
|
com.bstek.dorado.view.type.property.validator | |
com.bstek.dorado.view.widget |
视图组件的基础实现。
|
com.bstek.dorado.view.widget.action | |
com.bstek.dorado.view.widget.data | |
com.bstek.dorado.view.widget.layout |
各种布局管理器的实现。
|
com.bstek.dorado.web.resolver |
用于完成dorado中各种功能的请求拦截器。
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
ClientEventParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
Modifier and Type | Class and Description |
---|---|
class |
TextParseContext
解析字符串时使用的上下文对象。
|
Modifier and Type | Method and Description |
---|---|
protected ObjectDefinition |
ObjectParser.createDefinition(org.w3c.dom.Element element,
ParseContext context)
创建一个新的配置声明对象。
|
protected java.util.List<?> |
DispatchableXmlParser.dispatchChildElements(org.w3c.dom.Element element,
ParseContext context)
遍历所有子节点并将解析任务分派给各个已注册的子解析器,并将所有子解析器返回的解析结果以List的方式返回。
|
protected java.lang.Object |
DispatchableXmlParser.dispatchElement(java.lang.String pathPrefix,
org.w3c.dom.Element child,
ParseContext context)
将某个XML节点的解析任务分发给匹配的子解析器。
|
protected java.lang.Object |
ClassTypePropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
CollectionToPropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
CompositePropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
DispatchableXmlParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ObjectParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
StringArrayPropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
SubNodeToPropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected DefinitionReference<? extends Definition>[] |
ObjectParser.getParentDefinitionReferences(java.lang.String parentNameText,
ParseContext context)
将parent属性中的配置信息转换成一组指向具体配置声明对象的引用。
例如根据parent="hr.Employee,hr.Manager",可得到两个分别指向hr.Employee和hr. |
protected TextParser |
CompositePropertyParser.getTextParser(ParseContext context) |
protected void |
ObjectParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context)
初始化一个配置声明对象。
|
protected java.lang.Object |
ObjectParser.internalParse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
DispatchableXmlParser.parse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
IgnoreParser.parse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
TextPropertyParser.parse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
UnsupportParser.parse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
XmlParser.parse(org.w3c.dom.Node node,
ParseContext context)
解析某个XML节点,并返回解析结果。
|
java.lang.Object |
XmlParserHelper.MockParser.parse(org.w3c.dom.Node node,
ParseContext context) |
protected java.util.Map<java.lang.String,java.lang.Object> |
DispatchableXmlParser.parseProperties(org.w3c.dom.Element element,
ParseContext context)
解析所有的属性,并返回属性值的集合。
此处所指的属性包括XML节点中的属性(Attribute)以及下列形式的子属性节点: 。
如果二者同时存在,则将以子属性节点中的定义为准。 |
protected java.lang.Object |
DispatchableXmlParser.parseProperty(java.lang.String property,
org.w3c.dom.Node node,
ParseContext context)
解析给定的属性节点。
|
protected java.util.Map<java.lang.String,java.lang.Object> |
CompositePropertyParser.parseSubProperties(java.util.List<org.w3c.dom.Element> childElements,
ParseContext context) |
protected java.lang.Object |
TextPropertyParser.parseText(java.lang.String text,
ParseContext context)
解析传入的字符串并返回解析结果。
|
Constructor and Description |
---|
XmlParseException(java.lang.String message,
org.w3c.dom.Node node,
ParseContext context) |
XmlParseException(java.lang.String message,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected void |
ConfigurableDataConfigManager.preloadConfig(org.w3c.dom.Document document,
ParseContext context)
预装载配置文件中的配置信息。 此项操作的目的是发掘出配置文件中所有的全局对象,以便于在后续的处理中建立对象之间的绑定和依赖关系。
|
Modifier and Type | Class and Description |
---|---|
class |
DataParseContext
数据定义配置的解析上下文。
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
DataProviderParserDispatcher.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
DataResolverParserDispatcher.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
DataTypePropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
GenericObjectParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
GenericParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
MapValuesParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PreloadDataProviderParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PreloadDataResolverParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PreloadDataTypeParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PropertyDefParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ValidatorParserDispatcher.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected DefinitionReference<DataProviderDefinition>[] |
DataProviderParser.getParentDefinitionReferences(java.lang.String parentNameText,
ParseContext context) |
protected DefinitionReference<DataResolverDefinition>[] |
DataResolverParser.getParentDefinitionReferences(java.lang.String parentNameText,
ParseContext context) |
protected DefinitionReference<DataTypeDefinition>[] |
DataTypeParser.getParentDefinitionReferences(java.lang.String parentNameText,
ParseContext context) |
protected void |
DataProviderParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
DataResolverParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
DataTypeParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
GenericObjectParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
PropertyDefParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
ReferenceParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected java.lang.Object |
DataTypeParser.internalParse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
DataObjectParserDispatcher.parse(org.w3c.dom.Node node,
ParseContext context) |
Constructor and Description |
---|
ComplexDataTypeNameUnsupportedException(java.lang.String message,
org.w3c.dom.Node node,
ParseContext context) |
ComplexDataTypeNameUnsupportedException(java.lang.String message,
ParseContext context) |
Modifier and Type | Class and Description |
---|---|
class |
ConfigRuleParseContext |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
ChildTemplateParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ClientEventParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PropertyParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
RuleTemplateParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
PreloadParser.parse(org.w3c.dom.Node node,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected ObjectDefinition |
ViewParser.createDefinition(org.w3c.dom.Element element,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
DefaultMapTextParserDispatcher.parseText(java.lang.String text,
ParseContext context) |
Modifier and Type | Class and Description |
---|---|
class |
PreparseContext |
class |
ViewParseContext
视图配置文件的解析上下文。
|
Modifier and Type | Method and Description |
---|---|
protected ObjectDefinition |
ViewConfigParser.createDefinition(org.w3c.dom.Element element,
ParseContext context) |
protected java.util.List<?> |
ViewConfigParser.dispatchChildElements(org.w3c.dom.Element element,
ParseContext context) |
protected java.lang.Object |
ContextParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ViewArgumentsParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ViewConfigParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
ComponentParserDispatcher.parse(org.w3c.dom.Node node,
ParseContext context) |
java.lang.Object |
ModelParser.parse(org.w3c.dom.Node node,
ParseContext context) |
Modifier and Type | Class and Description |
---|---|
class |
PackagesConfigParseContext
资源包配置的解析上下文。
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
PackagesConfigPackageParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PackagesConfigParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
PackagesConfigPatternParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected void |
AjaxValidatorParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected ObjectDefinition |
ComponentParser.createDefinition(org.w3c.dom.Element element,
ParseContext context) |
protected java.lang.Object |
ChildComponentParser.doParse(org.w3c.dom.Node node,
ParseContext context) |
protected void |
ComponentParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
ControlParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected java.lang.Object |
ComponentParser.internalParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.lang.Object |
ContainerParser.internalParse(org.w3c.dom.Node node,
ParseContext context) |
protected java.util.Map<java.lang.String,java.lang.Object> |
ContainerParser.parseProperties(org.w3c.dom.Element element,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected void |
AjaxActionParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
LongTaskParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
protected void |
UpdateActionParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected void |
DataSetParser.initDefinition(ObjectDefinition definition,
org.w3c.dom.Element element,
ParseContext context) |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
LayoutConstraintParserDispatcher.parseText(java.lang.String text,
ParseContext context) |
Modifier and Type | Class and Description |
---|---|
static class |
ResourceTypeParser.ResourceTypeParseContext |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
ResourceTypeParser.parse(org.w3c.dom.Node node,
ParseContext context) |
Copyright © 2001-2011 www.BSTEK.com All Rights Reserved.