Java 类javax.xml.bind.annotation.XmlAnyAttribute 实例源码

项目:niftyeditor    文件:GElement.java   
@XmlAnyAttribute
public Map<QName, String> getXmlAttributes() {
    Map<QName, String> res = new HashMap<QName, String>();
    for (String s : this.attributes.keySet()) {
        if (!s.equals("id") && !s.equals("name")) {
            QName qname = QName.valueOf(XMLConstants.NULL_NS_URI + s);
            res.put(qname, this.attributes.get(s));
        }
    }
    return res;
}
项目:niftyeditor    文件:GEffect.java   
@XmlAnyAttribute
public Map<QName, String> getXmlAttributes() {
    Map<QName, String> res = new HashMap<QName, String>();
    for (String s : this.effectType.getAttributes().getAttributes().keySet()) {

            QName qname = QName.valueOf(XMLConstants.NULL_NS_URI + s);
            res.put(qname, getAttribute(s));

    }
    return res;
}
项目:dropwizard-pagination    文件:CustomJaxbLink.java   
@XmlAnyAttribute
public Map<QName, Object> getParams() {
    return params;
}
项目:ditb    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:ditb    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:LCIndex-HBase-0.94.16    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:LCIndex-HBase-0.94.16    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:HIndex    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:HIndex    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:IRIndex    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:IRIndex    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:jaxb2-basics    文件:AnnotatePropertyVisitor.java   
public Void visitAnyAttributePropertyInfo(
        MAnyAttributePropertyInfo<NType, NClass> info) {
    this.annotatable.annotate(XmlAnyAttribute.class);
    return null;
}
项目:jaxb2-basics    文件:AnyAttributePropertyOutline.java   
protected void annotate(JAnnotatable annotatable) {
    annotatable.annotate(XmlAnyAttribute.class);
}
项目:hbase    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hbase    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:RStore    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:RStore    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:PyroDB    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:PyroDB    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:c5    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:c5    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
@JsonAnyGetter
public Map<QName,Object> getAny() {
  return attrs;
}
项目:codefather    文件:Described.java   
@XmlAnyAttribute
public void setAttrMap2(Map<QName, String> attrMap) {
    this.attrMap2 = attrMap;
}
项目:EvalBench    文件:Configuration.java   
@XmlAnyAttribute
public Map<QName, String> getAny() {
    return extension;
}
项目:HBase-Research    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:HBase-Research    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hbase-0.94.8-qod    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hbase-0.94.8-qod    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hbase-0.94.8-qod    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hbase-0.94.8-qod    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:DominoHBase    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:DominoHBase    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hindex    文件:ColumnSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:hindex    文件:TableSchemaModel.java   
/**
 * @return the map for holding unspecified (user) attributes
 */
@XmlAnyAttribute
public Map<QName,Object> getAny() {
  return attrs;
}
项目:APIServer    文件:LinkJaxb.java   
/**
 * Ciccio.
 *
 * @return Ciccio.
 */
@XmlAnyAttribute
public final Map<QName, Object> getParams() {
    return params;
}