⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rdfs.java

📁 好东西啊!你看看就知道了
💻 JAVA
字号:
package org.w3c.rdf.vocabulary.rdf_schema_200001;import org.w3c.rdf.model.*;/** * This class provides convenient access to schema information. * DO NOT MODIFY THIS FILE. * It was generated automatically by edu.stanford.db.rdf.vocabulary.Generator */public class RDFS {  /** Namespace URI of this schema */  public static final String _Namespace = "http://www.w3.org/2000/01/rdf-schema#";  public static Resource subPropertyOf;  public static Resource label;  public static Resource ConstraintResource;  public static Resource Container;  public static Resource seeAlso;  public static Resource range;  public static Resource Resource;  public static Resource domain;  public static Resource comment;  public static Resource Literal;  public static Resource ContainerMembershipProperty;  public static Resource Class;  public static Resource subClassOf;  public static Resource ConstraintProperty;  public static Resource isDefinedBy;  static {    try {      setNodeFactory(new org.w3c.rdf.implementation.model.NodeFactoryImpl());    } catch (ModelException ex) { ex.printStackTrace(System.err); }  }  private static Resource createResource(NodeFactory f, String suffix) throws ModelException {    return f.createResource(_Namespace, suffix);  }  public static void setNodeFactory(NodeFactory f) throws ModelException {    subPropertyOf = createResource(f, "subPropertyOf");    label = createResource(f, "label");    ConstraintResource = createResource(f, "ConstraintResource");    Container = createResource(f, "Container");    seeAlso = createResource(f, "seeAlso");    range = createResource(f, "range");    Resource = createResource(f, "Resource");    domain = createResource(f, "domain");    comment = createResource(f, "comment");    Literal = createResource(f, "Literal");    ContainerMembershipProperty = createResource(f, "ContainerMembershipProperty");    Class = createResource(f, "Class");    subClassOf = createResource(f, "subClassOf");    ConstraintProperty = createResource(f, "ConstraintProperty");    isDefinedBy = createResource(f, "isDefinedBy");  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -