-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI components for multi value tags. issue #2227
- Loading branch information
1 parent
410de17
commit bdefa85
Showing
4 changed files
with
908 additions
and
10 deletions.
There are no files selected for viewing
93 changes: 93 additions & 0 deletions
93
j-lawyer-client/src/com/jdimension/jlawyer/ui/tagging/MultiValueTag.form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
|
||
<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> | ||
<AuxValues> | ||
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> | ||
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> | ||
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> | ||
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> | ||
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> | ||
</AuxValues> | ||
|
||
<Layout> | ||
<DimensionLayout dim="0"> | ||
<Group type="103" groupAlignment="0" attributes="0"> | ||
<Group type="102" alignment="0" attributes="0"> | ||
<EmptySpace min="-2" pref="10" max="-2" attributes="0"/> | ||
<Component id="jLabel1" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace max="-2" attributes="0"/> | ||
<Component id="jSeparator1" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace max="-2" attributes="0"/> | ||
<Component id="jComboBox1" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace min="-2" pref="10" max="-2" attributes="0"/> | ||
</Group> | ||
</Group> | ||
</DimensionLayout> | ||
<DimensionLayout dim="1"> | ||
<Group type="103" groupAlignment="0" attributes="0"> | ||
<Component id="jSeparator1" alignment="1" max="32767" attributes="0"/> | ||
<Group type="102" attributes="0"> | ||
<EmptySpace min="-2" pref="3" max="-2" attributes="0"/> | ||
<Group type="103" groupAlignment="0" max="-2" attributes="0"> | ||
<Group type="102" attributes="0"> | ||
<Component id="jComboBox1" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace min="-2" pref="3" max="-2" attributes="0"/> | ||
</Group> | ||
<Group type="102" attributes="0"> | ||
<Component id="jLabel1" max="32767" attributes="0"/> | ||
<EmptySpace max="-2" attributes="0"/> | ||
</Group> | ||
</Group> | ||
</Group> | ||
</Group> | ||
</DimensionLayout> | ||
</Layout> | ||
<SubComponents> | ||
<Component class="javax.swing.JLabel" name="jLabel1"> | ||
<Properties> | ||
<Property name="font" type="java.awt.Font" editor="org.netbeans.modules.form.editors2.FontEditor"> | ||
<FontInfo relative="true"> | ||
<Font component="jLabel1" property="font" relativeSize="true" size="0"/> | ||
</FontInfo> | ||
</Property> | ||
<Property name="text" type="java.lang.String" value="Beschriftung"/> | ||
</Properties> | ||
</Component> | ||
<Component class="javax.swing.JComboBox" name="jComboBox1"> | ||
<Properties> | ||
<Property name="font" type="java.awt.Font" editor="org.netbeans.modules.form.editors2.FontEditor"> | ||
<FontInfo relative="true"> | ||
<Font component="jComboBox1" property="font" relativeSize="true" size="0"/> | ||
</FontInfo> | ||
</Property> | ||
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor"> | ||
<StringArray count="4"> | ||
<StringItem index="0" value="Item 1"/> | ||
<StringItem index="1" value="Item 2"/> | ||
<StringItem index="2" value="Item 3"/> | ||
<StringItem index="3" value="Item 4"/> | ||
</StringArray> | ||
</Property> | ||
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor"> | ||
<Border info="null"/> | ||
</Property> | ||
<Property name="opaque" type="boolean" value="true"/> | ||
</Properties> | ||
<Events> | ||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jComboBox1ActionPerformed"/> | ||
</Events> | ||
<AuxValues> | ||
<AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/> | ||
</AuxValues> | ||
</Component> | ||
<Component class="javax.swing.JSeparator" name="jSeparator1"> | ||
<Properties> | ||
<Property name="orientation" type="int" value="1"/> | ||
</Properties> | ||
</Component> | ||
</SubComponents> | ||
</Form> |
Oops, something went wrong.