Searched defs:group (Results 1 - 7 of 7) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/
H A DSimpleSmfPropertyGroupInfo.java36 private String group; field in class:SimpleSmfPropertyGroupInfo
42 public SimpleSmfPropertyGroupInfo(HasService info, String group) { argument
44 this.group = group;
47 public SimpleSmfPropertyGroupInfo(ServiceBean service, String group) { argument
48 this(new SimpleHasService(service), group);
66 return group;
H A DSimpleSmfPropertyInfo.java47 public SimpleSmfPropertyInfo(HasService info, String group, String name) argument
49 this(new SimpleSmfPropertyGroupInfo(info, group), name);
52 public SimpleSmfPropertyInfo(ServiceBean service, String group, argument
54 this(new SimpleHasService(service), group, name);
H A DPropertyGroupsManagedObject.java114 public PropertyGroupManagedObject getChild(PropertyGroup group) { argument
117 getChildren(), group, COMPARATOR);
142 for (PropertyGroup group : groups) {
143 if (!group.getType().equals(PROPERTY_GROUP_APP)) {
147 PropertyGroupManagedObject child = getChild(group);
149 child = new PropertyGroupManagedObject(this, group);
H A DPropertyGroupManagedObject.java106 private PropertyGroup group; field in class:PropertyGroupManagedObject
113 PropertyGroup group) throws ScfException {
115 super(group.getName());
118 this.group = group;
151 return group;
161 String pgName = group.getName();
112 PropertyGroupManagedObject(PropertyGroupsManagedObject parent, PropertyGroup group) argument
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/property/
H A DRadioButtonPropertySynchronizer.java46 private ButtonGroup group = new ButtonGroup(); field in class:RadioButtonPropertySynchronizer
65 * the property to synchronize with the button group
80 // Re-initialize now that group has been set
85 group.add(button);
113 ButtonModel selected = group.getSelection();
127 // Wait until group has been set to initialize
128 if (group != null) {
143 group.clearSelection();
151 return group;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/cli/
H A DCommandLineProcessor.java39 private OptionGroup group; field in class:CommandLineProcessor
48 private CommandLineProcessor(OptionGroup group, CommandLineParser parser) { argument
49 this.group = group;
99 verifyRequiredOptions(group);
150 process(group, conflict, indent + " ");
191 // Get the first option in this group, if any, which has already
243 * Retrieves the first ParsedOption from this option group.
376 public static OptionMap[] process(String[] args, OptionGroup group, argument
383 new CommandLineProcessor(group, parse
[all...]
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DVirtualHost.java77 private String group; field in class:VirtualHost
172 public VirtualHost(ApachePanelDescriptor parent, String group) argument
176 this.group = group;
224 if (group == null) {
225 group = parent.getVirtualHostNamePool().get();
228 return group;
344 return group != null;
358 if (group != null) {
360 service.deletePropertyGroup(group);
[all...]

Completed in 26 milliseconds