Package
Class
Use
Tree
Deprecated
Index
Help
PREV LETTER
NEXT LETTER
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
R
S
T
U
V
W
P
parseClassExpression(String)
- Method in class
J2OOntologyManager
parses a class expression string to obtain a class expression.
parseParameters(String[], Set<String>, Set<String>)
- Static method in class
Utilities
This method can be used to parse argument strings of main methods.
premain(String, Instrumentation)
- Static method in class
J2OSynchroniserAgent
printStack()
- Static method in class
Utilities
prints the current stack trace (for testing purposes).
property
- Variable in class
PropertyWrapper
the corresponding OWL-property.
PropertyWrapper
- Class in
Java2OWL
This class represents the correspondences between Java accessor groups and OWL-Properties.
PropertyWrapperMappingRelational
- Class in
Java2OWL
for accessor groups of Map-type, for example HashMap
> or HashMap
HashMap<String,Set<TestMapper>> friends = new HashMap<String,Set<TestMapper>>(); @J2OWLProperty(name = "hasFriends", setter = "setFriends", adder="addFriends,addFriend", remover="removeFriends,removeFriend", clearer="clearFriends") public HashMap<String,Set<TestMapper>> getFriends() {return friends;} public void setFriends(Object friends) { assert(friends instanceof HashMap); this.friends = (HashMap<String,Set<TestMapper>>)friends;} public Set<TestMapper> getFriends(String key) {return friends.get(key);} public void addFriends(String key, Object f1) { assert(f1 instanceof Set); friends.put(key,(Set<TestMapper>)f1);} public void addFriend(String key, TestMapper f) { if(friends.get(key) == null) {friends.put(key,new HashSet<TestMapper>());} friends.get(key).add(f); } public void removeFriends(String key) {friends.remove(key);} public void removeFriend(String key,TestMapper f) { Object fr = friends.get(key); if(fr !
pwComponents
- Variable in class
PropertyWrapper
maps the owner class to the component.
Package
Class
Use
Tree
Deprecated
Index
Help
PREV LETTER
NEXT LETTER
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
R
S
T
U
V
W