當前位置: 首頁>>代碼示例>>Java>>正文


Java XStream.useAttributeFor方法代碼示例

本文整理匯總了Java中com.thoughtworks.xstream.XStream.useAttributeFor方法的典型用法代碼示例。如果您正苦於以下問題:Java XStream.useAttributeFor方法的具體用法?Java XStream.useAttributeFor怎麽用?Java XStream.useAttributeFor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.thoughtworks.xstream.XStream的用法示例。


在下文中一共展示了XStream.useAttributeFor方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: create

import com.thoughtworks.xstream.XStream; //導入方法依賴的package包/類
/**
 * Parse icon_associations.xml to build the list of Associations
 *
 * @return
 */
public static Associations create() {
  final URL associationsXml = AssociationsFactory.class.getResource("/icon_associations.xml");
  final XStream xStream = new XStream();
  xStream.alias("associations", Associations.class);
  xStream.alias("regex", RegexAssociation.class);
  xStream.alias("type", TypeAssociation.class);

  if (StaticPatcher.isClass("com.intellij.psi.PsiClass")) {
    xStream.alias("psi", PsiElementAssociation.class);
  } else {
    xStream.alias("psi", TypeAssociation.class);
  }

  xStream.useAttributeFor(Association.class, "icon");
  xStream.useAttributeFor(Association.class, "name");
  xStream.useAttributeFor(RegexAssociation.class, "pattern");
  xStream.useAttributeFor(TypeAssociation.class, "type");

  if (StaticPatcher.isClass("com.intellij.psi.PsiClass")) {
    xStream.useAttributeFor(PsiElementAssociation.class, "type");
  }

  return (Associations) xStream.fromXML(associationsXml);
}
 
開發者ID:mallowigi,項目名稱:a-file-icon-idea,代碼行數:30,代碼來源:Associations.java

示例2: parse

import com.thoughtworks.xstream.XStream; //導入方法依賴的package包/類
@Override
public Suite parse(InputStream suiteInputStream) throws Exception
{
    XStream xStream = new XStream(new StaxDriver());
    xStream.addPermission(NoTypePermission.NONE);
    xStream.allowTypesByWildcard(new String[]{
            "com.surenpi.autotest.suite.runner.**"
    });

    xStream.aliasSystemAttribute(null, "class");

    xStream.alias("suite", Suite.class);
    xStream.aliasField("pageConfig", Suite.class, "xmlConfPath");
    xStream.useAttributeFor(Suite.class, "xmlConfPath");
    xStream.aliasField("pages", Suite.class, "pageList");
    xStream.useAttributeFor(Suite.class, "pagePackage");
    xStream.useAttributeFor(Suite.class, "rows");
    xStream.useAttributeFor(Suite.class, "afterSleep");

    xStream.alias("page", SuitePage.class);
    xStream.aliasField("class", SuitePage.class, "pageCls");
    xStream.useAttributeFor(SuitePage.class, "pageCls");
    xStream.aliasField("actions", SuitePage.class, "actionList");
    xStream.useAttributeFor(SuitePage.class, "repeat");

    xStream.alias("action", SuiteAction.class);
    xStream.useAttributeFor(SuiteAction.class, "field");
    xStream.useAttributeFor(SuiteAction.class, "name");

    Object obj = xStream.fromXML(suiteInputStream);

    return (Suite) obj;
}
 
開發者ID:LinuxSuRen,項目名稱:phoenix.webui.suite.runner,代碼行數:34,代碼來源:XStreamSuiteParser.java

示例3: createXStream

import com.thoughtworks.xstream.XStream; //導入方法依賴的package包/類
static XStream createXStream() {
    XStream xStream = new XStream();
    xStream.processAnnotations(new Class[]{
            ColumnTypeMapping.class,
            DefaultTypeMapping.class,
            TableTypeMapping.class,
            TypeMappings.class
    });
    xStream.useAttributeFor(TableTypeMapping.class, "tableName");
    xStream.addDefaultImplementation(ArrayList.class, List.class);
    return xStream;
}
 
開發者ID:btc-ag,項目名稱:redg,代碼行數:13,代碼來源:XmlFileDataTypeProvider.java

示例4: createXStream

import com.thoughtworks.xstream.XStream; //導入方法依賴的package包/類
static XStream createXStream() {
    XStream xStream = new XStream();
    xStream.processAnnotations(new Class[]{
            ConvenienceSetterConfig.class
    });
    xStream.alias("convenienceSetterConfig", ConvenienceSetterConfig.class);
    xStream.addImplicitCollection(ConvenienceSetterConfig.class, "convenienceSetterConfigs", "javaType", DataTypeConvenienceSetterConfig.class);
    xStream.addImplicitCollection(DataTypeConvenienceSetterConfig.class, "convenienceSetters", "convenienceSetter", ConvenienceSetterModel.class);
    xStream.addDefaultImplementation(ArrayList.class, List.class);
    xStream.aliasAttribute(DataTypeConvenienceSetterConfig.class, "javaDataTypeName", "name");
    xStream.useAttributeFor(ConvenienceSetterModel.class, "setterJavaTypeName");
    xStream.useAttributeFor(ConvenienceSetterModel.class, "fullyQualifiedConverterMethodName");
    return xStream;
}
 
開發者ID:btc-ag,項目名稱:redg,代碼行數:15,代碼來源:XmlFileConvenienceSetterProvider.java


注:本文中的com.thoughtworks.xstream.XStream.useAttributeFor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。