Package org.uengine.processdesigner.inputters

Source Code of org.uengine.processdesigner.inputters.RoleResolutionContextSelectorInput

package org.uengine.processdesigner.inputters;

import org.metaworks.inputter.Picker;
import org.metaworks.inputter.PickerInput;
import org.uengine.processdesigner.RolePicker;

/**
* @author Jinyoung Jang
*/

public class RoleResolutionContextSelectorInput extends PickerInput{

  public RoleResolutionContextSelectorInput(){
    super();
  }

  public Picker getNewPicker() {
    RolePicker rolePicker = RolePicker.create(null);
   
    rolePicker.setModal(true);
   
    return rolePicker;
  }


}
TOP

Related Classes of org.uengine.processdesigner.inputters.RoleResolutionContextSelectorInput

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.