1 11 package org.eclipse.ui.internal.components.registry; 12 13 14 17 public class ScopeReference implements IScopeReference { 18 19 private int relationship; 20 private IComponentScope scope; 21 22 public ScopeReference(int relationship, IComponentScope target) { 23 this.relationship = relationship; 24 this.scope = target; 25 } 26 27 30 public int getRelationship() { 31 return relationship; 32 } 33 34 37 public IComponentScope getTarget() { 38 return scope; 39 } 40 41 } 42 | Popular Tags |