use of org.qi4j.tools.model.descriptor.ImportedServiceDetailDescriptor in project qi4j-sdk by Qi4j.
the class ImportedByPane method setDescriptor.
@Override
protected void setDescriptor(Object objectDesciptor) {
clear();
if (!(objectDesciptor instanceof ImportedServiceDetailDescriptor)) {
return;
}
ImportedServiceDetailDescriptor detailDescriptor = (ImportedServiceDetailDescriptor) objectDesciptor;
ImportedServiceDescriptor descriptor = detailDescriptor.descriptor().importedService();
Class<? extends ServiceImporter> importer = descriptor.serviceImporter();
nameLabel.setText(importer.getSimpleName());
classLabel.setText(importer.toString());
}
use of org.qi4j.tools.model.descriptor.ImportedServiceDetailDescriptor 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);
}
}
}
}
use of org.qi4j.tools.model.descriptor.ImportedServiceDetailDescriptor in project qi4j-sdk by Qi4j.
the class GraphBuilder method buildImportedServicesNode.
private void buildImportedServicesNode(Node parent, Iterable<ImportedServiceDetailDescriptor> iter) {
sortTypeChildren(iter);
boolean first = true;
for (Object obj : childList) {
ImportedServiceDetailDescriptor descriptor = (ImportedServiceDetailDescriptor) obj;
if (first) {
String name = "Imported Services";
parent = addChild(parent, name, name);
first = false;
}
addChild(parent, descriptor.descriptor().primaryType().getSimpleName(), descriptor);
}
}
Aggregations