use of org.qi4j.tools.model.descriptor.TransientDetailDescriptor in project qi4j-sdk by Qi4j.
the class GraphBuilder method buildTransientsNode.
private void buildTransientsNode(Node parent, Iterable<TransientDetailDescriptor> iter) {
sortTypeChildren(iter);
boolean first = true;
for (Object obj : childList) {
TransientDetailDescriptor descriptor = (TransientDetailDescriptor) obj;
if (first) {
String name = "Transients";
parent = addChild(parent, name, name);
first = false;
}
addChild(parent, descriptor.descriptor().toString(), descriptor);
}
}
use of org.qi4j.tools.model.descriptor.TransientDetailDescriptor in project qi4j-sdk by Qi4j.
the class DetailModelPane method setDescriptorImpl.
private void setDescriptorImpl(Object objectDescriptor) {
Component curSelectedComp = tabPane.getSelectedComponent();
tabPane.removeAll();
generalPane.setDescriptor(objectDescriptor);
dependencyPane.setDescriptor(objectDescriptor);
methodPane.setDescriptor(objectDescriptor);
statePane.setDescriptor(objectDescriptor);
serviceConfigurationPane.setDescriptor(objectDescriptor);
serviceUsagePane.setDescriptor(objectDescriptor);
importedByPane.setDescriptor(objectDescriptor);
apiPane.setDescriptor(objectDescriptor);
spiPane.setDescriptor(objectDescriptor);
if (objectDescriptor instanceof LayerDetailDescriptor || objectDescriptor instanceof ModuleDetailDescriptor) {
tabPane.add(bundle.getString("CTL_APITab.Text"), apiPane);
tabPane.add(bundle.getString("CTL_SPITab.Text"), spiPane);
} else if (objectDescriptor instanceof ServiceDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_DependencyTab.Text"), dependencyPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
tabPane.add(bundle.getString("CTL_StateTab.Text"), statePane);
tabPane.add(bundle.getString("CTL_ServiceConfiguration.Text"), serviceConfigurationPane);
tabPane.add(bundle.getString("CTL_ServiceUsage.Text"), serviceUsagePane);
} else if (objectDescriptor instanceof ImportedServiceDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
tabPane.add(bundle.getString("CTL_ServiceUsage.Text"), serviceUsagePane);
tabPane.add(bundle.getString("CTL_ImportedBy.Text"), importedByPane);
} else if (objectDescriptor instanceof EntityDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_DependencyTab.Text"), dependencyPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
tabPane.add(bundle.getString("CTL_StateTab.Text"), statePane);
} else if (objectDescriptor instanceof ValueDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_DependencyTab.Text"), dependencyPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
tabPane.add(bundle.getString("CTL_StateTab.Text"), statePane);
} else if (objectDescriptor instanceof ObjectDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_DependencyTab.Text"), dependencyPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
} else if (objectDescriptor instanceof TransientDetailDescriptor) {
tabPane.add(bundle.getString("CTL_GeneralTab.Text"), generalPane);
tabPane.add(bundle.getString("CTL_DependencyTab.Text"), dependencyPane);
tabPane.add(bundle.getString("CTL_MethodTab.Text"), methodPane);
tabPane.add(bundle.getString("CTL_StateTab.Text"), statePane);
}
if (linkActivatedInProgress) {
// for linking always display the first tab (General)
linkActivatedInProgress = false;
tabPane.setSelectedIndex(0);
} else {
// if not linking, then maintain the current selected tab
if (curSelectedComp != null) {
int index = tabPane.indexOfComponent(curSelectedComp);
if (index != -1) {
tabPane.setSelectedIndex(index);
}
}
}
}
Aggregations