unresolvedreference.java

来自「用JGraph编的软件」· Java 代码 · 共 47 行

JAVA
47
字号
package org.jgpd.io.jbpm.definition.impl;

public class UnresolvedReference {

  public UnresolvedReference( Object referencingObject,
                              String destinationName,
                              ProcessBlockImpl destinationScope,
                              String property,
                              Class destinationType ) {
    this.referencingObject = referencingObject;
    this.destinationName = destinationName;
    this.destinationScope = destinationScope;
    this.property = property;
    this.destinationType = destinationType;
  }

  public Object getReferencingObject() {
    return referencingObject;
  }

  public String getDestinationName() {
    return destinationName;
  }

  public ProcessBlockImpl getDestinationScope() {
    return destinationScope;
  }

  public String getProperty() {
    return property;
  }

  public Class getDestinationType() {
    return destinationType;
  }

  public String toString() {
    return "unresolve-reference from " + referencingObject + ", property " + property + " to destination " + destinationName + " in scope " + destinationScope;
  }

  private Object referencingObject = null;
  private String destinationName = null;
  private ProcessBlockImpl destinationScope = null;
  private Class destinationType = null;
  private String property = null;
}

⌨️ 快捷键说明

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