Searched defs:module (Results 1 - 3 of 3) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DModulePanel.java78 public void init(Module module) { argument
84 if (module == null) {
87 ApacheUtil.update(module.getNameProperty(), nameProperty);
88 ApacheUtil.update(module.getFileProperty(), fileProperty);
90 fsView = module.getParent().getApacheInfo().getPanelDescriptor().
105 Finder.getString("module.edit.name"));
114 Finder.getString("module.edit.file"));
H A DModulePropertySynchronizer.java65 Module module, boolean initFromProp) {
67 super(property, module, initFromProp);
69 module.getNameProperty().addChangeListener(listener);
70 module.getFileProperty().addChangeListener(listener);
75 * synchronization from {@code property} to {@code module}.
78 Module module) {
80 this(property, module, true);
97 Module module = getObject();
98 module.getNameProperty().removeChangeListener(listener);
99 module
64 ModulePropertySynchronizer(MutableProperty<List<String>> property, Module module, boolean initFromProp) argument
77 ModulePropertySynchronizer(MutableProperty<List<String>> property, Module module) argument
[all...]
H A DModuleControl.java41 public static final String ID = "module";
42 public static final String PARAM_MODULE = "module";
49 private Module module; field in class:ModuleControl
104 Module child = module.getParent().getModule(name);
105 if (child != null && child != module) {
107 "module.error.duplicate", name));
110 module.getNameProperty().setValue(name);
111 module.getFileProperty().setValue(file);
124 Module module = parent.getHasModules().getModules().
126 if (module
[all...]

Completed in 260 milliseconds