/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/property/ |
H A D | EditableTablePanelPropertySynchronizer.java | 91 List<T> values = new ArrayList<T>(nRows); 96 values.add(value); 99 return values; 103 public void setValue(List<T> values) { argument 107 if (values == null) { 108 values = Collections.emptyList(); 111 int nVals = values.size(); 115 for (Object value : values) {
|
H A D | ListModelPropertySynchronizer.java | 101 List<T> values = new ArrayList<T>(nRows); 104 values.add((T)model.getElementAt(row)); 107 return values; 111 public void setValue(List<T> values) { argument 112 if (values == null) { 113 values = Collections.emptyList(); 118 int nVals = values.size(); 121 for (Object value : values) {
|
H A D | ListSelectorPropertySynchronizer.java | 134 Set<T> values = new HashSet<T>(size); 138 values.add(value); 141 return values; 153 public void setValue(Set<T> values) { argument 154 if (values == null) { 155 values = Collections.emptySet(); 172 if (values.contains(value)) { 181 if (!values.contains(value)) {
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/smf/ |
H A D | SmfMutableProperty.java | 62 void setRepoValue(T values) throws ScfException; argument
|
H A D | BasicSmfMutableProperty.java | 147 List<T> values = null; 159 return values; 168 values = new ArrayList<T>(n); 171 values.add(converter.convert(s)); 175 return values; 186 public void setRepoValue(List<T> values) throws ScfException { argument 187 List<String> array = new ArrayList<String>(values.size()); 188 for (T v : values) 238 List<T> values = getRepoValue(); 239 if (values ! [all...] |
H A D | ServiceBean.java | 80 * Get values of a property. 89 * Get values of a property in a snapshot. 99 * Set the current values of a property. 103 * @param values values 106 List<String> values) throws ScfException; 105 setPropertyValues(String pg_name, String prop_name, List<String> values) argument
|
H A D | ServiceBeanAdaptor.java | 131 List<String> values) throws ScfException { 134 sibean_.setPropertyValues(pg_name, prop_name, values); 130 setPropertyValues(String pg_name, String prop_name, List<String> values) argument
|
H A D | AggregatedRefreshService.java | 120 List<String> values) throws ScfException { 121 service.setPropertyValues(pg_name, prop_name, values); 119 setPropertyValues(String pg_name, String prop_name, List<String> values) argument
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/smf/ |
H A D | ComponentListPropertySynchronizer.java | 79 List<T> values = new ArrayList<T>(nComps); 82 values.add(getValue(comp)); 84 return values; 88 public void setValue(List<T> values) { argument 91 int nValues = values == null ? 0 : values.size(); 108 T value = values.get(i);
|
/solaris-userland-s11u3/components/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/ |
H A D | TablePanelPropertySynchronizer.java | 91 List<T> values = new ArrayList<T>(nRows); 96 values.add(value); 99 return values; 103 public void setValue(List<T> values) { argument 107 if (values == null) { 108 values = Collections.emptyList(); 111 int nVals = values.size(); 115 for (Object value : values) {
|
H A D | OpenPortsTableModel.java | 46 public OpenPortsTableModel(Object[] values, String[] columns) { argument 51 for (Object v : values) { 57 public OpenPortsTableModel(Object[] values) { argument 58 this(values, new String[] {"", "", ""}); 96 Object values[]; 101 values = new Object[] { new Boolean("false"), 104 values = new Object[] { new Boolean("true"), 108 values = new Object[] {new Boolean("true"), 111 values = new Object[] {new Boolean("false"), 115 return values; [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/ |
H A D | DefaultEditableTableModel.java | 43 public DefaultEditableTableModel(Object[] values, String columnName) { argument 45 for (int i = 0; i < values.length; i++) { 46 addRow(new Object[] {values[0]}); 50 public DefaultEditableTableModel(Object[] values) { argument 51 this(values, "");
|
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/ |
H A D | ExtAttrObj.java | 39 * a comma separated set of string values with a specific keyword. 52 * Null constructor creates an empty has table of key/values. 62 * Return the values for a specified key name. 66 * @return A vector of string values 81 * Set the value for a specified key name. Any existing values 96 * Set one or more values for a specified key name. 97 * Any existing values for that key are replaced. 100 * @param A vector of string values 103 public void setAttribute(String keyName, Vector values) { argument 106 attr.set(values); 140 setAttribute(String keyName, String [] values) argument 168 addAttribute(String keyName, Vector values) argument 182 addAttribute(String keyName, String [] values) argument 211 delAttribute(String keyName, Vector values) argument 226 delAttribute(String keyName, String [] values) argument [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/ |
H A D | TreeSelectorControl.java | 115 List<S> values = new LinkedList<S>(); 118 addValues(values, model, path, true); 120 return values; 244 private void addValues(List<S> values, TreeModel model, TreePath path, argument 249 values.add(value); 256 addValues(values, model, childPath, false);
|
/solaris-userland-s11u3/components/jansson/doc/html/_static/ |
H A D | underscore.js | 17 c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest= 24 b.after=function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=J||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var c=[],d;for(d in a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]=b[d]});return a};b.defaults=function(a){j(i.call(arguments,
|