objectstring.java

来自「Semantic Web Ontology Editor」· Java 代码 · 共 587 行 · 第 1/2 页

JAVA
587
字号
		// TODO Auto-generated method stub	}	public void visit(RemoveObjectPropertyRange event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemovePropertyAxiom event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveIndividualAxiom event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveDataPropertyInstance event) throws OWLException {		value = ("RemoveDataPropertyInstance("+				getString(event.getSubject())+", "+				getString(event.getProperty())+", "+				getString(event.getObject())+")");	}	public void visit(RemoveObjectPropertyInstance event) throws OWLException {		value = ("RemoveObjectPropertyInstance("				+getString(event.getSubject())+", "				+getString(event.getProperty())+", "				+getString(event.getObject())+")");	}	public void visit(RemoveSuperProperty event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveAnnotationInstance event) throws OWLException {		value = ("RemoveAnnotationInstance ("+				getString(event.getSubject())+", "+				namedString(event.getProperty())+", "+				event.getContent()+")");	}	public void visit(RemoveImport event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveIndividualClass event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveInverse event) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(SetLinkTarget target) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(AddForeignEntity entity) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(RemoveForeignEntity entity) throws OWLException {		// TODO Auto-generated method stub	}	public void visit(OWLAnd node) throws OWLException {		StringBuffer buffer = new StringBuffer();		buffer.append("And(");		for (Iterator iter = node.getOperands().iterator(); iter.hasNext();) {			OWLObject obj = (OWLObject) iter.next();			buffer.append(getString(obj));			if (iter.hasNext()) {				buffer.append(", ");			}		}		buffer.append(")");			}	public void visit(OWLAnnotationProperty node) throws OWLException {		value = "Annotation Prop "+namedString(node);		}	public void visit(OWLAnnotationInstance node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataValue node) throws OWLException {		value = "\""+node.getValue()+"\"";		if (node.getURI() != null) {			value += "^^<"+node.getURI()+">";		}		if (node.getLang() != null) {			value += "@"+node.getLang();		}	}	public void visit(OWLDataType node) throws OWLException {		value = namedString(node);	}	public void visit(OWLDataEnumeration node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataAllRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataCardinalityRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataProperty node) throws OWLException {		value = namedString(node);	}	public void visit(OWLDataSomeRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataValueRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDifferentIndividualsAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDisjointClassesAxiom node) throws OWLException {		value = "DisjointClasses("+node.getDisjointClasses()+")";	}	public void visit(OWLEquivalentClassesAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLEquivalentPropertiesAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLFrame node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLIndividual node) throws OWLException {		value = namedString(node);	}	public void visit(OWLObjectAllRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectCardinalityRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectProperty node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectSomeRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectValueRestriction node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLNot node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLOntology node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLOr node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLClass node) throws OWLException {		// Default	}	public void visit(OWLEnumeration node) throws OWLException {		value = node.getIndividuals().toString();	}	public void visit(OWLSameIndividualsAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLSubClassAxiom node) throws OWLException {		value = "SubClass("+getString(node.getSubClass())+", "+getString(node.getSuperClass())+")";	}	public void visit(OWLSubPropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLFunctionalPropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLInverseFunctionalPropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLTransitivePropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLSymmetricPropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLInversePropertyAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLPropertyDomainAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectPropertyRangeAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataPropertyRangeAxiom node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLObjectPropertyInstance node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLDataPropertyInstance node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(OWLIndividualTypeAssertion node) throws OWLException {		// TODO Auto-generated method stub			}	public void visit(RemoveDataType type) throws OWLException {		// TODO Auto-generated method stub			}}

⌨️ 快捷键说明

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