⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unresolvedreference.java

📁 用JGraph编的软件
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -