source: java/main/src/main/resources/framsticks.xml @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<Framsticks>
3        <import class="com.framsticks.gui.Browser" />
4        <import class="com.framsticks.remote.RemoteTree" />
5        <import class="com.framsticks.model.ModelPackage" />
6        <import class="com.framsticks.model.ModelBuilder" />
7        <import class="com.framsticks.model.f0.SchemaBuilder" />
8        <import class="com.framsticks.structure.LocalTree" />
9        <import class="com.framsticks.hosting.Server" />
10        <import class="com.framsticks.test.TestClass" />
11        <import class="com.framsticks.gui.table.ColumnsConfig" />
12        <Browser>
13                <RemoteTree name="localhost:9009" address="localhost:9009">
14                        <ModelPackage />
15                </RemoteTree>
16                <!-- <LocalTree name="model"> -->
17                <!--    <ModelBuilder resource="/examples/f0_example.txt" /> -->
18                <!-- </LocalTree> -->
19                <!-- <LocalTree name="f0schema"> -->
20                <!--    <SchemaBuilder /> -->
21                <!-- </LocalTree> -->
22                <RemoteTree name="remote" address="localhost:9007" />
23                <include resource="/common-columns.xml" />
24                <!-- <ColumnsConfig className="Genotype" columnsNames="uid name" /> -->
25        </Browser>
26        <Server port="9007">
27                <LocalTree name="test">
28                        <TestClass />
29                </LocalTree>
30        </Server>
31</Framsticks>
Note: See TracBrowser for help on using the repository browser.