EntityAttributeValueDialog is a swing component used to edit entity attribute
values. The EntityAttributeValueDialog displays the name of the attribute to be edited
as well as its current value when the attribute is selected in the table. The model for this
component, which supplies information about the Entity attributes, is an instance of
EntityAttributeValueModelInterface:
supplies
Example
//Create the model
import com.sas.entities.Entity;
import com.sas.dataselectors.propertyeditor.EntityAttributeValueSelectorAdapter;
import com.sas.swing.visuals.dataselectors.propertyeditor.EntityAttributeValuePanel;
Entity = new Entity();
EntityAttributeValueSelectorAdapter selectorAdapter = new EntityAttributeValueSelectorAdapter(entity);
JFrame frame = new JFrame(this.getClass().getName());
frame.setSize(300, 150);
String title = " A title";
boolean modal = true;
EntityAttributeValueDialog propertySheet = new EntityAttributeValueDialog(selectorAdapter, frame, title, modal);