<configuration>
  <appServersConfiguration>
    <appServers/>
  </appServersConfiguration>
  <codeFormatterSizeOptions>
    <indentationSize>4</indentationSize>
    <maxLineWidth>100</maxLineWidth>
    <tabSize>4</tabSize>
  </codeFormatterSizeOptions>
  <debuggingConfiguration>
    <stepExclusionPatterns>
      <string>java.lang.ClassLoader</string>
      <string>sun.*</string>
    </stepExclusionPatterns>
    <toStringClassPatterns>
      <string>java.lang.Class</string>
      <string>java.lang.Package</string>
      <string>java.lang.Thread</string>
      <string>java.lang.StringBuffer</string>
      <string>java.io.File</string>
      <string>java.net.InetAddress</string>
      <string>java.net.URI</string>
      <string>java.net.URL</string>
      <string>java.awt.Dimension</string>
      <string>java.awt.Rectangle</string>
      <string>java.awt.Color</string>
      <string>java.awt.Point</string>
      <string>java.awt.Insets</string>
      <string>java.awt.Font</string>
    </toStringClassPatterns>
  </debuggingConfiguration>
  <editorModes>
    <editorModes>
      <entry>
        <string>Java</string>
        <editorMode>
          <codeFormatterOptions>
            <string>CASELABEL_INDENT</string>
            <string>STATEMENT_WRAP</string>
            <string>BRACE_SPACE</string>
            <string>INDENT_ONTYPE</string>
            <string>ASSIGNMENTOPERATOR_SPACE</string>
            <string>METHOD_NEWLINE</string>
            <string>ARRAY_INDENT</string>
            <string>FINALLY_NEWLINE</string>
            <string>FORMAT_ONPASTE</string>
            <string>BLOCK_INDENT</string>
            <string>AUTO_INSERT_CLOSING_BRACE_ONTYPE</string>
            <string>CATCH_NEWLINE</string>
            <string>PARAMETER_INDENT</string>
            <string>BLOCK_NEWLINE</string>
            <string>ADJUST_SPACES</string>
            <string>BINARYOPERATOR_SPACE</string>
            <string>NEXTLINE_INDENT</string>
            <string>ARGUMENTCOMMA_SPACE</string>
            <string>ADJUST_NEWLINES</string>
            <string>TYPE_NEWLINE</string>
            <string>ELSE_NEWLINE</string>
            <string>CASE_INDENT</string>
            <string>KEYWORD_SPACE</string>
            <string>PARAMETERCOMMA_SPACE</string>
            <string>AUTO_INSERT_JAVADOC_ASTERISK_ONTYPE</string>
            <string>ARGUMENT_INDENT</string>
          </codeFormatterOptions>
          <codeTemplates>
            <smartTemplate>
              <abbrev>block</abbrev>
              <description>Surround with {}</description>
              <text>{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>err</abbrev>
              <description>Write to System.err</description>
              <text>System.err.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>for</abbrev>
              <description>Iterate array</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE([])$.length; $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>foreach</abbrev>
              <description>Iterate collection</description>
              <text>for ($3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ : $1=SELECT_VARIABLE([],java.util.List,java.util.ArrayList,java.util.Set,java.util.HashSet)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forl</abbrev>
              <description>Iterate list</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size(); $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>For loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>Surround with for loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forlr</abbrev>
              <description>Iterate list in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size() - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forr</abbrev>
              <description>Iterate array in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE([])$.length - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>If statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>Surround with if statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ife</abbrev>
              <description>If-else statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}
else
{

}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>it</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.SetOfInt,com.omnicore.clm.api.collections.SetOfFileEntry,com.omnicore.clm.api.collections.SetOf)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextKey();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>itm</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.MapOfInt)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
int $4=SUGGEST_NAME()$ = $1$.DEFAULT_ITERATOR.nextKey();
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextValue();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>main</abbrev>
              <description>Main method</description>
              <text>public static void main(String[] args)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>out</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>switch</abbrev>
              <description>Switch statment</description>
              <text>switch ($1=SELECT_VARIABLE(int)$)
{
case $2=SELECT(0,1,2,3)$:
|
break;
default:
break;
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sync</abbrev>
              <description>Synchronized statement</description>
              <text>synchronized ($1=SELECT_VARIABLE(java.lang.Object)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Measure execution time</description>
              <text>long time = System.currentTimeMillis();
|
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Try-catch statement</description>
              <text>try
{
|
}
catch ($1=SELECT(Exception,Throwable,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>While loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			|
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>Surround with while loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>whileenum</abbrev>
              <description>Iterate java.util.Enumeration</description>
              <text>while ($1=SELECT_VARIABLE(java.util.Enumeration)$.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.nextElement();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Surround with try-catch</description>
              <text>try
{
$STATEMENT_SELECTION$|
}
catch ($1=SELECT(Throwable,Exception,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Surround with execution time measurement</description>
              <text>long time = System.currentTimeMillis();
$STATEMENT_SELECTION$
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>Surround with SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			$STATEMENT_SELECTION$
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("|");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("$1=SELECT_VARIABLE()$: " + $1$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ifnull</abbrev>
              <description>Check if variable is null</description>
              <text>if($1=SELECT_VARIABLE()$==null)
throw new NullPointerException("$1$ can`t be null");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>constraintcmf</abbrev>
              <description>Add a CmfProperty constraint</description>
              <text>addConstraint(new CmfProperty("$1$")|);
</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>element</abbrev>
              <description>RIFE Java element implementation</description>
              <text>package $1$;

import com.uwyn.rife.engine.Element;

public class $2$ extends Element
{
	public void processElement()
	{
		|
	}
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>constraintbean</abbrev>
              <description>Add a ConstrainedBean constraint</description>
              <text>addConstraint(new ConstrainedBean()|);
</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.1_15</editorModeVersion>
          <filePatterns>
            <string>*.java</string>
            <string>*.class</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16768513</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-9259406</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-10658467</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>J#</string>
        <editorMode>
          <codeFormatterOptions>
            <string>CASELABEL_INDENT</string>
            <string>STATEMENT_WRAP</string>
            <string>BRACE_SPACE</string>
            <string>INDENT_ONTYPE</string>
            <string>ASSIGNMENTOPERATOR_SPACE</string>
            <string>METHOD_NEWLINE</string>
            <string>ARRAY_INDENT</string>
            <string>FINALLY_NEWLINE</string>
            <string>FORMAT_ONPASTE</string>
            <string>BLOCK_INDENT</string>
            <string>AUTO_INSERT_CLOSING_BRACE_ONTYPE</string>
            <string>CATCH_NEWLINE</string>
            <string>PARAMETER_INDENT</string>
            <string>BLOCK_NEWLINE</string>
            <string>ADJUST_SPACES</string>
            <string>BINARYOPERATOR_SPACE</string>
            <string>NEXTLINE_INDENT</string>
            <string>ARGUMENTCOMMA_SPACE</string>
            <string>ADJUST_NEWLINES</string>
            <string>TYPE_NEWLINE</string>
            <string>ELSE_NEWLINE</string>
            <string>CASE_INDENT</string>
            <string>PARAMETERCOMMA_SPACE</string>
            <string>ARGUMENT_INDENT</string>
            <string>KEYWORD_SPACE</string>
            <string>AUTO_INSERT_JAVADOC_ASTERISK_ONTYPE</string>
          </codeFormatterOptions>
          <codeTemplates>
            <smartTemplate>
              <abbrev>block</abbrev>
              <description>Surround with {}</description>
              <text>{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>err</abbrev>
              <description>Write to System.err</description>
              <text>System.err.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>for</abbrev>
              <description>Iterate array</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE([])$.length; $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>foreach</abbrev>
              <description>Iterate collection</description>
              <text>for ($3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ : $1=SELECT_VARIABLE([],java.util.List,java.util.ArrayList)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forl</abbrev>
              <description>Iterate list</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size(); $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>For loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>Surround with for loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forlr</abbrev>
              <description>Iterate list in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size() - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forr</abbrev>
              <description>Iterate array in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE([])$.length - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>If statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>Surround with if statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ife</abbrev>
              <description>If-else statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}
else
{

}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>it</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.SetOfInt,com.omnicore.clm.api.collections.SetOfFileEntry,com.omnicore.clm.api.collections.SetOf)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextKey();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>itm</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.MapOfInt)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
int $4=SUGGEST_NAME()$ = $1$.DEFAULT_ITERATOR.nextKey();
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextValue();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>main</abbrev>
              <description>Main method</description>
              <text>public static void main(String[] args)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>out</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>switch</abbrev>
              <description>Switch statment</description>
              <text>switch ($1=SELECT_VARIABLE(int)$)
{
case $2=SELECT(0,1,2,3)$:
|
break;
default:
break;
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sync</abbrev>
              <description>Synchronized statement</description>
              <text>synchronized ($1=SELECT_VARIABLE(java.lang.Object)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Measure execution time</description>
              <text>long time = System.currentTimeMillis();
|
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Try-catch statement</description>
              <text>try
{
|
}
catch ($1=SELECT(Exception,Throwable,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>While loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			|
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>Surround with while loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>whileenum</abbrev>
              <description>Iterate java.util.Enumeration</description>
              <text>while ($1=SELECT_VARIABLE(java.util.Enumeration)$.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.nextElement();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Surround with try-catch</description>
              <text>try
{
$STATEMENT_SELECTION$|
}
catch ($1=SELECT(Throwable,Exception,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Surround with execution time measurement</description>
              <text>long time = System.currentTimeMillis();
$STATEMENT_SELECTION$
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>Surround with SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			$STATEMENT_SELECTION$
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("|");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("$1=SELECT_VARIABLE()$: " + $1$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ifnull</abbrev>
              <description>Check if variable is null</description>
              <text>if($1=SELECT_VARIABLE()$==null)
throw new NullPointerException("$1$ can`t be null");</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0_4</editorModeVersion>
          <filePatterns>
            <string>*.jsl</string>
            <string>*.java</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16768513</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-9259406</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-10658467</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>XML</string>
        <editorMode>
          <codeTemplates>
            <smartTemplate>
              <abbrev>element</abbrev>
              <description>XML site element declaration</description>
              <text>&lt;element id="$1$" implementation="$2$" url="$3$"&gt;|
&lt;/element&gt;
</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>subm</abbrev>
              <description>XML element submission declaration</description>
              <text>&lt;submission name="$1$"&gt;|
&lt;/submission&gt;
</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>bean</abbrev>
              <description>XML bean declaration</description>
              <text>&lt;bean classname="$1$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>exit</abbrev>
              <description>XML exit declaration</description>
              <text>&lt;exit name="$1$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>input</abbrev>
              <description>XML input declaration</description>
              <text>&lt;input name="$1$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>output</abbrev>
              <description>XML output declaration</description>
              <text>&lt;output name="$1$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>flowlink</abbrev>
              <description>XML flow link declaration</description>
              <text>&lt;flowlink srcexit="$1$" destid="$2$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>datalink</abbrev>
              <description>XML data link declaration</description>
              <text>&lt;datalink srcoutput="$1$" destid="$2$" destinput="$3$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>globalexit</abbrev>
              <description>XML global exit declaration</description>
              <text>&lt;globalexit name="$1$" destid="$2$"/&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>property</abbrev>
              <description>XML property declaration</description>
              <text>&lt;property name="$1$"&gt;|&lt;/property&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>datasource</abbrev>
              <description>XML datasource declaration</description>
              <text>&lt;datasource&gt;|&lt;/datasource&gt;</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0_8</editorModeVersion>
          <filePatterns>
            <string>*.xml</string>
            <string>*.xsl</string>
            <string>*.xslt</string>
            <string>*.xsd</string>
            <string>*.*proj</string>
            <string>*.resx</string>
            <string>*.settings</string>
            <string>*.config</string>
            <string>*.lzx</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16761857</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-526345</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4128768</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16762881</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>Visual Basic.NET</string>
        <editorMode>
          <codeFormatterOptions>
            <string>CASELABEL_INDENT</string>
            <string>AUTO_INSERT_DOC_SLASHES_ONTYPE</string>
            <string>FORMAT_ONPASTE</string>
            <string>INDENT_ONTYPE</string>
            <string>BLOCK_INDENT</string>
            <string>AUTO_INSERT_CLOSING_BRACE_ONTYPE</string>
            <string>CASE_INDENT</string>
          </codeFormatterOptions>
          <codeTemplates>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>If statement</description>
              <text>If $1=SELECT_VARIABLE(bool)$ Then
|
End If</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>Surround with if statement</description>
              <text>If $1=SELECT_VARIABLE(bool)$ Then
$STATEMENT_SELECTION$|
End If</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>While loop</description>
              <text>While $1=SELECT_VARIABLE(bool)$
|
End While</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>Surroud with while loop</description>
              <text>While $1=SELECT_VARIABLE(bool)$
$STATEMENT_SELECTION$|
End While</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>For loop</description>
              <text>For $2=SUGGEST_INDEX_NAME()$ As Integer = 1 To $1=SELECT(10,100,100)$
|
Next</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>Surround with for loop</description>
              <text>For $2=SUGGEST_INDEX_NAME()$ As Integer = 1 To $1=SELECT(10,100,100)$
$STATEMENT_SELECTION$|
Next</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0_12</editorModeVersion>
          <filePatterns>
            <string>*.vb</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16711423</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16759041</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13395712</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737536</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-10658467</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>11</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>12</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>IDL</string>
        <editorMode>
          <codeTemplates/>
          <editorModeVersion>1.0_1</editorModeVersion>
          <filePatterns>
            <string>*.idl</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16762625</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16768513</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16738250</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16744448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>C/C++</string>
        <editorMode>
          <codeTemplates/>
          <editorModeVersion>1.0_1</editorModeVersion>
          <filePatterns>
            <string>*.c</string>
            <string>*.h</string>
            <string>*.cpp</string>
            <string>*.hpp</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16768513</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>C#</string>
        <editorMode>
          <codeFormatterOptions>
            <string>CASELABEL_INDENT</string>
            <string>STATEMENT_WRAP</string>
            <string>BRACE_SPACE</string>
            <string>INDENT_ONTYPE</string>
            <string>ASSIGNMENTOPERATOR_SPACE</string>
            <string>METHOD_NEWLINE</string>
            <string>ARRAY_INDENT</string>
            <string>FINALLY_NEWLINE</string>
            <string>AUTO_INSERT_DOC_SLASHES_ONTYPE</string>
            <string>FORMAT_ONPASTE</string>
            <string>BLOCK_INDENT</string>
            <string>AUTO_INSERT_CLOSING_BRACE_ONTYPE</string>
            <string>CATCH_NEWLINE</string>
            <string>PARAMETER_INDENT</string>
            <string>BLOCK_NEWLINE</string>
            <string>ADJUST_SPACES</string>
            <string>BINARYOPERATOR_SPACE</string>
            <string>NAMESPACE_NEWLINE</string>
            <string>NEXTLINE_INDENT</string>
            <string>ARGUMENTCOMMA_SPACE</string>
            <string>ADJUST_NEWLINES</string>
            <string>TYPE_NEWLINE</string>
            <string>CASE_INDENT</string>
            <string>ELSE_NEWLINE</string>
            <string>PROPERTY_NEWLINE</string>
            <string>KEYWORD_SPACE</string>
            <string>PARAMETERCOMMA_SPACE</string>
            <string>ARGUMENT_INDENT</string>
          </codeFormatterOptions>
          <codeTemplates>
            <smartTemplate>
              <abbrev>for</abbrev>
              <description>Iterate array</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE([])$.Length; $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>out</abbrev>
              <description>Console.WriteLine</description>
              <text>Console.WriteLine($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>For loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>If statement</description>
              <text>if ($1=SELECT_VARIABLE(bool)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ife</abbrev>
              <description>If-else statement</description>
              <text>if ($1=SELECT_VARIABLE(bool)$)
{
|
}
else
{

}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>main</abbrev>
              <description>Main method</description>
              <text>public static void Main(String[] args)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forr</abbrev>
              <description>Iterate array in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE([])$.Length - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>switch</abbrev>
              <description>Switch statement</description>
              <text>switch ($1=SELECT_VARIABLE(int)$)
{
case $2=SELECT(0,1,2,3)$:
|
break;
default:
break;
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>lock</abbrev>
              <description>Lock statement</description>
              <text>lock ($1=SELECT_VARIABLE()$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Try-catch statement</description>
              <text>try
{
|
}
catch (Exception $1=SUGGEST_EXCEPTION_NAME()$)
{
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>While loop</description>
              <text>while ($1=SELECT_VARIABLE(bool)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forl</abbrev>
              <description>Iterate list</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE(System.Collections.ArrayList,System.Collections.IList)$.Count; $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forlr</abbrev>
              <description>Iterate list in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE(System.Collections.ArrayList,System.Collections.IList)$.Count - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>foreach</abbrev>
              <description>Iterate collection</description>
              <text>foreach ($3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ in $1=SELECT_VARIABLE([],System.Collections.ArrayList)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>Surround with if statement</description>
              <text>if ($1=SELECT_VARIABLE(bool)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>block</abbrev>
              <description>Surround with {}</description>
              <text>{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>Surround with while loop</description>
              <text>while ($1=SELECT_VARIABLE(bool)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>Surround with for loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sout</abbrev>
              <description>Console.WriteLine</description>
              <text>Console.WriteLine("|");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vout</abbrev>
              <description>Console.WriteLine</description>
              <text>Console.WriteLine("$1=SELECT_VARIABLE()$: " + $1$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ifnull</abbrev>
              <description>Check if variable is null</description>
              <text>if($1=SELECT_VARIABLE()$ == null)
throw new NullReferenceException("$1$ can`t be null");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Surround with try-ctach statement</description>
              <text>try
{
$STATEMENT_SELECTION$|
}
catch
{
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>unsafe</abbrev>
              <description>Surround with unsafe statement</description>
              <text>unsafe
{
$STATEMENT_SELECTION$|
}
</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0_11</editorModeVersion>
          <filePatterns>
            <string>*.cs</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16711423</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16759041</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13395712</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737536</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-10658467</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>11</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>12</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>13</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>14</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-6119007</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>15</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-9259406</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>16</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>JSP</string>
        <editorMode>
          <codeFormatterOptions/>
          <codeTemplates>
            <smartTemplate>
              <abbrev>block</abbrev>
              <description>Surround with {}</description>
              <text>{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>err</abbrev>
              <description>Write to System.err</description>
              <text>System.err.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>for</abbrev>
              <description>Iterate array</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE([])$.length; $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>foreach</abbrev>
              <description>Iterate collection</description>
              <text>for ($3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ : $1=SELECT_VARIABLE([],java.util.List,java.util.ArrayList,java.util.Set,java.util.HashSet)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forl</abbrev>
              <description>Iterate list</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = 0; $4$ &lt; $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size(); $4$++)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>For loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forloop</abbrev>
              <description>Surround with for loop</description>
              <text>for (int $2=SUGGEST_INDEX_NAME()$ = 0; $2$ &lt; $1$; $2$++)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forlr</abbrev>
              <description>Iterate list in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE(java.util.List,java.util.ArrayList,java.util.Vector)$.size() - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.get($4$);
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>forr</abbrev>
              <description>Iterate array in reverse order</description>
              <text>for (int $4=SUGGEST_INDEX_NAME()$ = $1=SELECT_VARIABLE([])$.length - 1; $4$ &gt;= 0; $4$--)
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$[$4$];
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>If statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>if</abbrev>
              <description>Surround with if statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ife</abbrev>
              <description>If-else statement</description>
              <text>if ($1=SELECT_VARIABLE(boolean)$)
{
|
}
else
{

}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>it</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.SetOfInt,com.omnicore.clm.api.collections.SetOfFileEntry,com.omnicore.clm.api.collections.SetOf)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextKey();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>itm</abbrev>
              <description></description>
              <text>$1=SELECT_VARIABLE(com.omnicore.clm.api.collections.MapOfInt)$.DEFAULT_ITERATOR.init();
while ($1$.DEFAULT_ITERATOR.hasMoreElements())
{
int $4=SUGGEST_NAME()$ = $1$.DEFAULT_ITERATOR.nextKey();
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.DEFAULT_ITERATOR.nextValue();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>main</abbrev>
              <description>Main method</description>
              <text>public static void main(String[] args)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>out</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println($1=SELECT_VARIABLE()$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>switch</abbrev>
              <description>Switch statment</description>
              <text>switch ($1=SELECT_VARIABLE(int)$)
{
case $2=SELECT(0,1,2,3)$:
|
break;
default:
break;
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sync</abbrev>
              <description>Synchronized statement</description>
              <text>synchronized ($1=SELECT_VARIABLE(java.lang.Object)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Measure execution time</description>
              <text>long time = System.currentTimeMillis();
|
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Try-catch statement</description>
              <text>try
{
|
}
catch ($1=SELECT(Exception,Throwable,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>While loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			|
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>while</abbrev>
              <description>Surround with while loop</description>
              <text>while ($1=SELECT_VARIABLE(boolean)$)
{
$STATEMENT_SELECTION$|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>whileenum</abbrev>
              <description>Iterate java.util.Enumeration</description>
              <text>while ($1=SELECT_VARIABLE(java.util.Enumeration)$.hasMoreElements())
{
$3=GET_ELEMENT_TYPE($1$)$ $2=SUGGEST_ELEMENT_NAME($1$)$ = $1$.nextElement();
|
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>try</abbrev>
              <description>Surround with try-catch</description>
              <text>try
{
$STATEMENT_SELECTION$|
}
catch ($1=SELECT(Throwable,Exception,RuntimeException,Error)$ $2=SUGGEST_EXCEPTION_NAME()$)
{
$2$.printStackTrace();
}</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>time</abbrev>
              <description>Surround with execution time measurement</description>
              <text>long time = System.currentTimeMillis();
$STATEMENT_SELECTION$
System.out.println("Time elapsed: " + (System.currentTimeMillis() - time) + " ms");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>invokel</abbrev>
              <description>Surround with SwingUtilities.invokeLater()</description>
              <text>SwingUtilities.invokeLater
(
	new Runnable()
	{
		public void run()
		{
			$STATEMENT_SELECTION$
		}
	}
);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>sout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("|");</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vout</abbrev>
              <description>Write to System.out</description>
              <text>System.out.println("$1=SELECT_VARIABLE()$: " + $1$);</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ifnull</abbrev>
              <description>Check if variable is null</description>
              <text>if($1=SELECT_VARIABLE()$==null)
throw new NullPointerException("$1$ can`t be null");</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0_3</editorModeVersion>
          <filePatterns>
            <string>*.jsp</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16761857</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-7566196</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4128768</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-26</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16762881</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-13872184</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16763137</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>11</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16745441</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>12</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16768513</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>13</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4456448</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>14</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>15</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16737997</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>16</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-9259406</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>17</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>18</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>19</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>20</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
      <entry>
        <string>RIFE XML</string>
        <editorMode>
          <codeTemplates>
            <smartTemplate>
              <abbrev>v</abbrev>
              <description>Short invisible template value</description>
              <text>&lt;!--V '$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vl</abbrev>
              <description>Long invisible template value</description>
              <text>&lt;!--V '$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vc</abbrev>
              <description>Short compact template value</description>
              <text>[!V '$1$'/]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>vcl</abbrev>
              <description>Long compact template value</description>
              <text>[!V '$1$']|[!/V]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>i</abbrev>
              <description>Invisible template include</description>
              <text>&lt;!--I '$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ic</abbrev>
              <description>Compact template include</description>
              <text>&lt;!--V '$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>b</abbrev>
              <description>Invisible template block</description>
              <text>&lt;!--B '$1$'--&gt;|&lt;!--/B--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>bc</abbrev>
              <description>Compact template block</description>
              <text>[!B '$1$']|[!/B]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>bv</abbrev>
              <description>Invisible template blockvalue</description>
              <text>&lt;!--BV '$1$'--&gt;|&lt;!--/BV--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>bvc</abbrev>
              <description>Compact template blockvalue</description>
              <text>[!BV '$1$']|[!/BV]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>e</abbrev>
              <description>Short invisible template embedded element value</description>
              <text>&lt;!--V 'ELEMENT:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>el</abbrev>
              <description>Long invisible template embedded element value</description>
              <text>&lt;!--V 'ELEMENT:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ec</abbrev>
              <description>Short compact template embedded element value</description>
              <text>[!V 'ELEMENT:$1$'/]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ecl</abbrev>
              <description>Long compact template embedded element value</description>
              <text>[!V 'ELEMENT:$1$']|[!/V]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>l</abbrev>
              <description>Short invisible template localization value</description>
              <text>&lt;!--V 'L10N:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ll</abbrev>
              <description>Long invisible template localization value</description>
              <text>&lt;!--V 'L10N:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>lc</abbrev>
              <description>Short compact template localization value</description>
              <text>[!V 'L10N:$1$'/]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>lcl</abbrev>
              <description>Long compact template localization value</description>
              <text>[!V 'L10N:$1$']|[!/V]</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fsubm</abbrev>
              <description>XHTML form submission</description>
              <text>&lt;form action="[!V 'SUBMISSION:FORM:$1$'/]" method="post"&gt;
|&lt;!--V 'SUBMISSION:PARAMS:$1$'/--&gt;
&lt;/form&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>finput</abbrev>
              <description>Short XHTML form input field</description>
              <text>&lt;!--V 'FORM:INPUT:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>finputl</abbrev>
              <description>Long XHTML form input field</description>
              <text>&lt;!--V 'FORM:INPUT:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fsecret</abbrev>
              <description>Short XHTML form secret field</description>
              <text>&lt;!--V 'FORM:SECRET:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fsecretl</abbrev>
              <description>Long XHTML form secret field</description>
              <text>&lt;!--V 'FORM:SECRET:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ftextarea</abbrev>
              <description>Short XHTML form textarea field</description>
              <text>&lt;!--V 'FORM:TEXTAREA:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ftextareal</abbrev>
              <description>Long XHTML form textarea field</description>
              <text>&lt;!--V 'FORM:TEXTAREA:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fradio</abbrev>
              <description>Short XHTML form radio button</description>
              <text>&lt;!--V 'FORM:RADIO:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fradiol</abbrev>
              <description>Long XHTML form radio button</description>
              <text>&lt;!--V 'FORM:RADIO:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fcheckbox</abbrev>
              <description>Short XHTML form checkbox button</description>
              <text>&lt;!--V 'FORM:CHECKBOX:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fcheckboxl</abbrev>
              <description>Long XHTML form checkbox button</description>
              <text>&lt;!--V 'FORM:CHECKBOX:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fselect</abbrev>
              <description>Short XHTML form select field</description>
              <text>&lt;!--V 'FORM:SELECT:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fselectl</abbrev>
              <description>Long XHTML form select field</description>
              <text>&lt;!--V 'FORM:SELECT:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fhidden</abbrev>
              <description>Short XHTML form hidden field</description>
              <text>&lt;!--V 'FORM:HIDDEN:$1$'/--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fhiddenl</abbrev>
              <description>Long XHTML form hidden field</description>
              <text>&lt;!--V 'FORM:HIDDEN:$1$'--&gt;|&lt;!--/V--&gt;</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ffinput</abbrev>
              <description>XHTML input form field</description>
              <text>&lt;div class="form_field"&gt;
	&lt;div&gt;&lt;label for="$1$"&gt;$2$&lt;/label&gt;&lt;/div&gt;
	&lt;div&gt;
		&lt;div [!V 'MARK:$1$'][!/V]&gt;
			&lt;!--V 'ERRORS:$1$'--&gt;&lt;!--/V--&gt;
			&lt;!--V 'FORM:INPUT:$1$'--&gt;id="$1$"&lt;!--/V--&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>fftextarea</abbrev>
              <description>XHTML textarea form field</description>
              <text>&lt;div class="form_field"&gt;
	&lt;div&gt;&lt;label for="$1$"&gt;$2$&lt;/label&gt;&lt;/div&gt;
	&lt;div&gt;
		&lt;div [!V 'MARK:$1$'][!/V]&gt;
			&lt;!--V 'ERRORS:$1$'--&gt;&lt;!--/V--&gt;
			&lt;!--V 'FORM:TEXTAREA:$1$'--&gt;id="$1$"&lt;!--/V--&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
</text>
            </smartTemplate>
            <smartTemplate>
              <abbrev>ff</abbrev>
              <description>XHTML form field</description>
              <text>&lt;div class="form_field"&gt;
	&lt;div&gt;&lt;label for="$1$"&gt;$2$&lt;/label&gt;&lt;/div&gt;
	&lt;div&gt;
		&lt;div [!V 'MARK:$1$'][!/V]&gt;
			&lt;!--V 'ERRORS:$1$'--&gt;&lt;!--/V--&gt;
			|
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
</text>
            </smartTemplate>
          </codeTemplates>
          <editorModeVersion>1.0</editorModeVersion>
          <filePatterns>
            <string>*.html</string>
            <string>*.xhtml</string>
            <string>*.htm</string>
          </filePatterns>
          <highlightingStyles>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>1</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>2</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16761857</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>3</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-526345</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-7105645</value>
              </fontColor>
              <fontStyle>2</fontStyle>
              <tokenValue>4</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-4128768</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>5</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>1</fontStyle>
              <tokenValue>6</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>3</fontStyle>
              <tokenValue>7</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16762881</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>8</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-1775968</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777216</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>9</tokenValue>
            </highlightingStyle>
            <highlightingStyle>
              <backgroundColor>
                <falpha>0.0</falpha>
                <value>-1775968</value>
              </backgroundColor>
              <fontColor>
                <falpha>0.0</falpha>
                <value>-16777020</value>
              </fontColor>
              <fontStyle>0</fontStyle>
              <tokenValue>10</tokenValue>
            </highlightingStyle>
          </highlightingStyles>
        </editorMode>
      </entry>
    </editorModes>
  </editorModes>
  <env>
    <envs>
      <environment>
        <directory>/System/Library/Frameworks/JavaVM.framework/Versions/1.3.1</directory>
        <name>JDK 1.3</name>
      </environment>
      <environment>
        <directory>/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2</directory>
        <name>JDK 1.4</name>
      </environment>
      <environment>
        <directory>/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK</directory>
        <name>CURRENT JDK </name>
      </environment>
      <environment>
        <directory>/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0</directory>
        <name>JDK 1.5</name>
      </environment>
    </envs>
  </env>
  <favoriteLibraries>
    <libraries/>
  </favoriteLibraries>
  <guiBuilderTemplates>
    <templates class="tree-map">
      <no-comparator/>
      <entry>
        <string>OK Cancel buttons</string>
        <string>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;Table&gt;
    &lt;AspectRatio&gt;1.3333333333333333&lt;/AspectRatio&gt;
    &lt;ScreenAreaRatio&gt;0.1&lt;/ScreenAreaRatio&gt;
    &lt;MarginTop&gt;0&lt;/MarginTop&gt;
    &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
    &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
    &lt;MarginRight&gt;0&lt;/MarginRight&gt;
    &lt;ScaleX&gt;true&lt;/ScaleX&gt;
    &lt;ScaleY&gt;true&lt;/ScaleY&gt;
    &lt;ComponentScaleX/&gt;
    &lt;ComponentScaleY/&gt;
    &lt;FillX&gt;true&lt;/FillX&gt;
    &lt;FillY&gt;true&lt;/FillY&gt;
    &lt;Component&gt;Panel&lt;/Component&gt;
    &lt;Text&gt;Panel&lt;/Text&gt;
    &lt;Name&gt;panel2&lt;/Name&gt;
    &lt;FontSize&gt;100&lt;/FontSize&gt;
    &lt;FontStyle/&gt;
    &lt;Rows&gt;1&lt;/Rows&gt;
    &lt;Columns&gt;4&lt;/Columns&gt;
    &lt;Contents&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;Yes&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Horizontal Space&lt;/Component&gt;
                &lt;Text&gt;Horizontal Space&lt;/Text&gt;
                &lt;Name&gt;panel3&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Button&lt;/Component&gt;
                &lt;Text&gt;Ok&lt;/Text&gt;
                &lt;Name&gt;okButton&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Button&lt;/Component&gt;
                &lt;Text&gt;Cancel&lt;/Text&gt;
                &lt;Name&gt;cancelButton&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;Yes&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Horizontal Space&lt;/Component&gt;
                &lt;Text&gt;Horizontal Space&lt;/Text&gt;
                &lt;Name&gt;panel4&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
    &lt;/Contents&gt;
&lt;/Table&gt;
</string>
      </entry>
      <entry>
        <string>Options panel</string>
        <string>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;Table&gt;
    &lt;AspectRatio&gt;1.3333333333333333&lt;/AspectRatio&gt;
    &lt;ScreenAreaRatio&gt;0.1&lt;/ScreenAreaRatio&gt;
    &lt;MarginTop&gt;2&lt;/MarginTop&gt;
    &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
    &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
    &lt;MarginRight&gt;2&lt;/MarginRight&gt;
    &lt;ScaleX&gt;true&lt;/ScaleX&gt;
    &lt;ScaleY&gt;true&lt;/ScaleY&gt;
    &lt;ComponentScaleX/&gt;
    &lt;ComponentScaleY/&gt;
    &lt;FillX&gt;true&lt;/FillX&gt;
    &lt;FillY&gt;true&lt;/FillY&gt;
    &lt;Component&gt;Grouppanel&lt;/Component&gt;
    &lt;Text&gt;Options&lt;/Text&gt;
    &lt;Name&gt;panel2&lt;/Name&gt;
    &lt;FontSize&gt;100&lt;/FontSize&gt;
    &lt;FontStyle/&gt;
    &lt;Rows&gt;3&lt;/Rows&gt;
    &lt;Columns&gt;1&lt;/Columns&gt;
    &lt;Contents&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;false&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;false&lt;/FillY&gt;
                &lt;Component&gt;Checkbox&lt;/Component&gt;
                &lt;Text&gt;Option 1&lt;/Text&gt;
                &lt;Name&gt;checkbox1&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;false&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;false&lt;/FillY&gt;
                &lt;Component&gt;Checkbox&lt;/Component&gt;
                &lt;Text&gt;Option 2&lt;/Text&gt;
                &lt;Name&gt;checkbox2&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX/&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Panel&lt;/Component&gt;
                &lt;Text&gt;Panel&lt;/Text&gt;
                &lt;Name&gt;panel5&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
    &lt;/Contents&gt;
&lt;/Table&gt;
</string>
      </entry>
      <entry>
        <string>Textfield panel</string>
        <string>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;Table&gt;
    &lt;AspectRatio&gt;1.3333333333333333&lt;/AspectRatio&gt;
    &lt;ScreenAreaRatio&gt;0.1&lt;/ScreenAreaRatio&gt;
    &lt;MarginTop&gt;2&lt;/MarginTop&gt;
    &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
    &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
    &lt;MarginRight&gt;2&lt;/MarginRight&gt;
    &lt;ScaleX&gt;true&lt;/ScaleX&gt;
    &lt;ScaleY&gt;true&lt;/ScaleY&gt;
    &lt;ComponentScaleX/&gt;
    &lt;ComponentScaleY/&gt;
    &lt;FillX&gt;true&lt;/FillX&gt;
    &lt;FillY&gt;true&lt;/FillY&gt;
    &lt;Component&gt;Grouppanel&lt;/Component&gt;
    &lt;Text&gt;Settings&lt;/Text&gt;
    &lt;Name&gt;panel2&lt;/Name&gt;
    &lt;FontSize&gt;100&lt;/FontSize&gt;
    &lt;FontStyle/&gt;
    &lt;Rows&gt;2&lt;/Rows&gt;
    &lt;Columns&gt;3&lt;/Columns&gt;
    &lt;Contents&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;false&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Label&lt;/Component&gt;
                &lt;Text&gt;Enter text&lt;/Text&gt;
                &lt;Name&gt;label1&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;false&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;Yes&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;false&lt;/FillY&gt;
                &lt;Component&gt;Textfield&lt;/Component&gt;
                &lt;Text&gt;Textfield&lt;/Text&gt;
                &lt;Name&gt;textfield1&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;2&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;2&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;2&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;2&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;false&lt;/ScaleY&gt;
                &lt;ComponentScaleX&gt;No&lt;/ComponentScaleX&gt;
                &lt;ComponentScaleY&gt;No&lt;/ComponentScaleY&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Button&lt;/Component&gt;
                &lt;Text&gt;...&lt;/Text&gt;
                &lt;Name&gt;button1&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
        &lt;Row&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX/&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Panel&lt;/Component&gt;
                &lt;Text&gt;Panel&lt;/Text&gt;
                &lt;Name&gt;panel4&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;true&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX/&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Panel&lt;/Component&gt;
                &lt;Text&gt;Panel&lt;/Text&gt;
                &lt;Name&gt;panel5&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
            &lt;Table&gt;
                &lt;MarginTop&gt;0&lt;/MarginTop&gt;
                &lt;MarginLeft&gt;0&lt;/MarginLeft&gt;
                &lt;MarginBottom&gt;0&lt;/MarginBottom&gt;
                &lt;MarginRight&gt;0&lt;/MarginRight&gt;
                &lt;ScaleX&gt;false&lt;/ScaleX&gt;
                &lt;ScaleY&gt;true&lt;/ScaleY&gt;
                &lt;ComponentScaleX/&gt;
                &lt;ComponentScaleY/&gt;
                &lt;FillX&gt;true&lt;/FillX&gt;
                &lt;FillY&gt;true&lt;/FillY&gt;
                &lt;Component&gt;Panel&lt;/Component&gt;
                &lt;Text&gt;Panel&lt;/Text&gt;
                &lt;Name&gt;panel7&lt;/Name&gt;
                &lt;FontSize&gt;100&lt;/FontSize&gt;
                &lt;FontStyle/&gt;
            &lt;/Table&gt;
        &lt;/Row&gt;
    &lt;/Contents&gt;
&lt;/Table&gt;
</string>
      </entry>
    </templates>
  </guiBuilderTemplates>
  <keyBindingConfiguration>
    <actionsToKeyBindings>
      <entry>
        <action>APPLICATION_FIND_EXTENDED_USAGES_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed I</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_BOOKMARK_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed F2</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_4</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 4</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_POS</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed LEFT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_TOGGLE_BREAKPOINT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F4</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>MEMBER_HELPER_PAGE_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed PAGE_DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_INTO_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F6</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CLOSE_CURRENT_WINDOW_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed ESCAPE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_EXPAND_SELECTION_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_BACK_TO_CURSOR_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift alt pressed F5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PASTE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed V</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_REDO_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift meta pressed Z</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_HOME_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed HOME</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_COPY_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed C</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_BUILD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F9</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_MOVE_CLASSES_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed P</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>COMPLETE_TYPE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed SPACE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CREATE_SETTERS_AND_GETTERS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed G</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_PAGE_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed PAGE_DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CLOSE_ALL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift meta pressed W</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_RENAME_IDENTIFIER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed I</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_TODOBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 8</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_TOOLBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 6</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_END_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed END</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_INLINEMETHOD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed L</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_PREFERENCES_DIALOG_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_EMACS_KILL_LINE</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_EXPAND_ALL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed PLUS</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_ENABLE_ALL_BREAKPOINTS_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_SELECT_TEXT_END_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_BACK_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed F7</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>MEMBER_HELPER_UP_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_WORD_RIGHT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed RIGHT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_OUTPUTBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SURROUND_WITH_CODE_TEMPLATE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed J</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_BACKSPACE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed BACK_SPACE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_UNDO_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed Z</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_BREAK_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed CANCEL</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_EXTRACT_METHOD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed E</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_WORD_RIGHT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed RIGHT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PLAIN_HOME_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_RIGHT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed RIGHT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_BACK_OUT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed F8</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>SHOW_HELPER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F1</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_POS</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed RIGHT</keyStroke>
            <keyStroke>pressed O</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_CLASS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl alt pressed C</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_EXECUTE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_MINIMIZE_MAIN_WINDOW_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_SWAP_WITH_CLIPBOARD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift meta pressed X</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_EXECUTE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed F5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_COLLAPSE_ALL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed MINUS</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_NEW_FILE_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_GOTO_SYMBOL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl alt pressed S</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_DECLARATION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed PAGE_UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_OUT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F8</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>MEMBER_HELPER_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_3</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 3</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_DELETE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed DELETE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_6</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 6</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_FILE_HISTORY_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_HOME_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed HOME</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PAGE_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed PAGE_DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_DISABLE_ALL_BREAKPOINTS_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_UPDATE_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_SELECT_DOWN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_BACK_EXPRESSION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl alt pressed F6</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PASTE_AS_STRING_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_OVERRIDE_METHOD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed O</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_CUT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed X</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_AUTO_INDENT_ALL_TEXT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed TAB</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_UNCOMMENT_SELECTION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed U</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_INLINEVARIABLE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed T</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_REBUILD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed F9</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_UNINDENT_SELECTION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed TAB</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>MEMBER_HELPER_INSERT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed ENTER</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_DECLARATION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed PAGE_DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_DELETE_LINE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed R</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_EXIT_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_TOGGLE_BOOKMARK_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed F2</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_INDENT_SELECTION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed TAB</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CHOOSE_PROJECT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed P</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_DELETE_WORD_RIGHT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed DELETE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_REMOVE_ALL_BREAKPOINTS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed F4</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_ALL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed A</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_REPLACE_DIALOG_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed D</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_UP_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CHOOSE_FILE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_RIGHT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed RIGHT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PAGE_UP_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed PAGE_UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_COMMENT_SELECTION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed C</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SURROUND_WITH_TRYCATCH_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed T</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_ERROR_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_OPEN_FILE_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_SAVE_ALL_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift meta pressed S</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_REPLACE_IN_PROJECT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed H</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_CLOSE_CURRENT_DIALOG_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed ESCAPE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_EXECUTE_FULL_LOGGING_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_CHANGESMETHODSIGNATURE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed M</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SEARCH_DIALOG_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed F</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_DEBUGBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 4</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_SOURCEBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 3</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SAVE_AS_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_BOOKMARK_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F2</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_INTRODUCEVARIABLE_METHOD_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed E</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_RUN_TO_CURSOR_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed F5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_FILE</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl alt pressed RIGHT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_ERROR_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_FIND_USAGES_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_SEARCHBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 7</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_REVISIONBROWSER_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_CLOSE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed W</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_PASTE_RECENT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift meta pressed V</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_REPLACE_MODIFIED_CLASSES</action>
        <unmodifiableList>
          <list>
            <keyStroke>alt pressed F5</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_WORD_LEFT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed LEFT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SAVE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed S</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_2</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 2</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_INSPECTION_RESULT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_REMOVE_SELECTION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed DELETE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>COMPLETE_MEMBER_ACCESS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed SPACE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_OVER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F7</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SEARCH_PROJECT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed F</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SEARCH_INCREMENTAL_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_INSPECTIONBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 9</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_PREVIOUS_TODO_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl alt pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_NEXT_INSPECTION_RESULT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed DOWN</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_IMPLEMENT_METHODS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift ctrl pressed A</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_REBUILD_CLEAN_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_8</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 8</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_UP_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed UP</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_DOCUMENTIZE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed D</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_COLLAPSE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed MINUS</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_INSERT_CODE_TEMPLATE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed J</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_LINE_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed L</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_GOTO_CURRENT_DEBUG_POSITION_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_SELECT_TEXT_BEGIN_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_CLEAR_ALL_BOOKMARKS_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>APPLICATION_ORGANIZE_IMPORTS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed O</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_TOGGLE_FULLSCREEN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift alt pressed ENTER</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>NEW_APPLICATION_SPLIT_EDITOR_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed BACK_SPACE</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_SELECT_LEFT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>shift pressed LEFT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_7</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 7</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_GLOBAL_HISTORY_KEY</action>
        <unmodifiableList/>
      </entry>
      <entry>
        <action>EDITOR_LEFT_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed LEFT</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>DEBUGGER_STEP_OVER_EXPRESSION_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed F6</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_FIND_PREVIOUS_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed Y</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>EDITOR_MATCHING_PAREN_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed M</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_STOP_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>pressed F10</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SELECT_PREVIOUS_FILE_9</action>
        <unmodifiableList>
          <list>
            <keyStroke>meta pressed 9</keyStroke>
          </list>
        </unmodifiableList>
      </entry>
      <entry>
        <action>APPLICATION_SHOW_PROJECTBROWSER_KEY</action>
        <unmodifiableList>
          <list>
            <keyStroke>ctrl pressed 2</keyStroke>
          </list>
   