Searched refs:isImage (Results 1 - 25 of 30) sorted by relevance

12

/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java126 * @param isImage whether the array of bytes represents an image or not.
129 public Message getString(byte[] value, boolean isImage) argument
135 else if (isImage)
177 * @param isImage whether the binary value represents an image or not.
180 public Message getMessage(BinaryValue value, boolean isImage) argument
187 else if (isImage)
206 * @param isImage whether the binary value represents an image or not.
208 public void setValue(byte[] value, boolean isImage) argument
210 label.setText(getString(value, isImage).toString());
213 if (!isImage)
230 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java125 * @param isImage whether the array of bytes represents an image or not.
128 public Message getString(byte[] value, boolean isImage) argument
134 else if (isImage)
176 * @param isImage whether the binary value represents an image or not.
179 public Message getMessage(BinaryValue value, boolean isImage) argument
186 else if (isImage)
205 * @param isImage whether the binary value represents an image or not.
207 public void setValue(byte[] value, boolean isImage) argument
209 label.setText(getString(value, isImage).toString());
212 if (!isImage)
229 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java126 * @param isImage whether the array of bytes represents an image or not.
129 public Message getString(byte[] value, boolean isImage) argument
135 else if (isImage)
177 * @param isImage whether the binary value represents an image or not.
180 public Message getMessage(BinaryValue value, boolean isImage) argument
187 else if (isImage)
206 * @param isImage whether the binary value represents an image or not.
208 public void setValue(byte[] value, boolean isImage) argument
210 label.setText(getString(value, isImage).toString());
213 if (!isImage)
230 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java125 * @param isImage whether the array of bytes represents an image or not.
128 public Message getString(byte[] value, boolean isImage) argument
134 else if (isImage)
176 * @param isImage whether the binary value represents an image or not.
179 public Message getMessage(BinaryValue value, boolean isImage) argument
186 else if (isImage)
205 * @param isImage whether the binary value represents an image or not.
207 public void setValue(byte[] value, boolean isImage) argument
209 label.setText(getString(value, isImage).toString());
212 if (!isImage)
229 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java126 * @param isImage whether the array of bytes represents an image or not.
129 public Message getString(byte[] value, boolean isImage) argument
135 else if (isImage)
177 * @param isImage whether the binary value represents an image or not.
180 public Message getMessage(BinaryValue value, boolean isImage) argument
187 else if (isImage)
206 * @param isImage whether the binary value represents an image or not.
208 public void setValue(byte[] value, boolean isImage) argument
210 label.setText(getString(value, isImage).toString());
213 if (!isImage)
230 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/components/
H A DBinaryCellPanel.java125 * @param isImage whether the array of bytes represents an image or not.
128 public LocalizableMessage getString(byte[] value, boolean isImage) argument
134 else if (isImage)
176 * @param isImage whether the binary value represents an image or not.
179 public LocalizableMessage getMessage(BinaryValue value, boolean isImage) argument
186 else if (isImage)
204 * @param isImage whether the binary value represents an image or not.
206 public void setValue(byte[] value, boolean isImage) argument
208 label.setText(getString(value, isImage).toString());
211 if (!isImage)
228 setValue(BinaryValue value, boolean isImage) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
235 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
237 boolean isImage = false;
241 isImage = Utilities.hasImageSyntax((String)o, schema);
243 return isImage;
H A DAttributeCellEditor.java272 boolean isImage = Utilities.hasImageSyntax(attrName,
281 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
285 binaryPanel.setValue((byte[])null, isImage);
293 binaryPanel.setValue(binaryValue, isImage);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java128 binaryPanel.setValue((byte[])value, isImage(table, row, column));
132 binaryPanel.setValue((byte[])null, isImage(table, row, column));
137 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
234 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
236 boolean isImage = false;
240 isImage = Utilities.hasImageSyntax((String)o, schema);
242 return isImage;
H A DAttributeCellEditor.java271 boolean isImage = Utilities.hasImageSyntax(attrName,
280 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
284 binaryPanel.setValue((byte[])null, isImage);
292 binaryPanel.setValue(binaryValue, isImage);
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
235 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
237 boolean isImage = false;
241 isImage = Utilities.hasImageSyntax((String)o, schema);
243 return isImage;
H A DAttributeCellEditor.java272 boolean isImage = Utilities.hasImageSyntax(attrName,
281 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
285 binaryPanel.setValue((byte[])null, isImage);
293 binaryPanel.setValue(binaryValue, isImage);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java128 binaryPanel.setValue((byte[])value, isImage(table, row, column));
132 binaryPanel.setValue((byte[])null, isImage(table, row, column));
137 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
234 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
236 boolean isImage = false;
240 isImage = Utilities.hasImageSyntax((String)o, schema);
242 return isImage;
H A DAttributeCellEditor.java271 boolean isImage = Utilities.hasImageSyntax(attrName,
280 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
284 binaryPanel.setValue((byte[])null, isImage);
292 binaryPanel.setValue(binaryValue, isImage);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
235 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
237 boolean isImage = false;
241 isImage = Utilities.hasImageSyntax((String)o, schema);
243 return isImage;
H A DAttributeCellEditor.java272 boolean isImage = Utilities.hasImageSyntax(attrName,
281 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
285 binaryPanel.setValue((byte[])null, isImage);
293 binaryPanel.setValue(binaryValue, isImage);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/renderer/
H A DAttributeCellEditor.java253 boolean isImage = Utilities.hasImageSyntax(attrName,
262 binaryPanel.setValue(BinaryValue.createBase64(this.value), isImage);
266 binaryPanel.setValue((byte[])null, isImage);
274 binaryPanel.setValue(binaryValue, isImage);
H A DLDAPEntryTableCellRenderer.java118 binaryPanel.setValue((byte[])value, isImage(table, row, column));
122 binaryPanel.setValue((byte[])null, isImage(table, row, column));
127 binaryPanel.setValue((BinaryValue)value, isImage(table, row, column));
223 private boolean isImage(JTable table, int row, int col) method in class:LDAPEntryTableCellRenderer
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java209 boolean isImage = hasImageSyntax(attrName);
210 setImageVisible(isImage);
213 if (isImage)
H A DSimplifiedViewEntryPanel.java969 final boolean isImage = Utilities.hasImageSyntax(attrName, schema);
970 pane.setValue(binaryValue, isImage);
1185 final boolean isImage = Utilities.hasImageSyntax(attrName, schema);
1190 pane.setValue(binaryValue, isImage);
1233 pane.setValue(newValue, isImage);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java208 boolean isImage = hasImageSyntax(attrName);
209 setImageVisible(isImage);
212 if (isImage)
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java209 boolean isImage = hasImageSyntax(attrName);
210 setImageVisible(isImage);
213 if (isImage)
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java208 boolean isImage = hasImageSyntax(attrName);
209 setImageVisible(isImage);
212 if (isImage)
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java209 boolean isImage = hasImageSyntax(attrName);
210 setImageVisible(isImage);
213 if (isImage)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DBinaryAttributeEditorPanel.java202 boolean isImage = hasImageSyntax(attrName);
203 setImageVisible(isImage);
206 if (isImage)

Completed in 1052 milliseconds

12