Lines Matching refs:target

55      * example, in the case of a LABEL_FOR relation, the target
58 * MEMBER_OF relation, the target vector would contain all
62 private Object [] target = new Object[0];
65 * Indicates an object is a label for one or more target objects.
76 * Indicates an object is labeled by one or more target objects.
88 * target objects.
99 * Indicates an object is a controller for one or more target
111 * Indicates an object is controlled by one or more target
194 * Identifies that the target group for a label has changed
209 * Identifies that the controller for the target object has changed
214 * Identifies that the target object that is doing the controlling has
286 this.target = null;
296 * @param target the target object for this relation
299 public AccessibleRelation(String key, Object target) {
301 this.target = new Object[1];
302 this.target[0] = target;
312 * @param target the target object(s) for this relation
315 public AccessibleRelation(String key, Object [] target) {
317 this.target = target;
336 * Returns the target objects for this relation
338 * @return an array containing the target objects for this relation
341 if (target == null) {
342 target = new Object[0];
344 Object [] retval = new Object[target.length];
345 for (int i = 0; i < target.length; i++) {
346 retval[i] = target[i];
352 * Sets the target object for this relation
354 * @param target the target object for this relation
356 public void setTarget(Object target) {
357 this.target = new Object[1];
358 this.target[0] = target;
362 * Sets the target objects for this relation
364 * @param target an array containing the target objects for this relation
366 public void setTarget(Object [] target) {
367 this.target = target;