2 Commits

Author SHA1 Message Date
  MrTob dc506a1fd4 added Client class 4 years ago
  MrTob 0578b33e29 added Server class 4 years ago
4 changed files with 30 additions and 17 deletions
Unified View
  1. +21
    -16
      .idea/workspace.xml
  2. +4
    -0
      src/xyz/nextn/Client.java
  3. +1
    -1
      src/xyz/nextn/Main.java
  4. +4
    -0
      src/xyz/nextn/Server.java

+ 21
- 16
.idea/workspace.xml View File

@@ -14,8 +14,8 @@
<file pinned="false" current-in-tab="true"> <file pinned="false" current-in-tab="true">
<entry file="file://$PROJECT_DIR$/src/xyz/nextn/Main.java"> <entry file="file://$PROJECT_DIR$/src/xyz/nextn/Main.java">
<provider selected="true" editor-type-id="text-editor"> <provider selected="true" editor-type-id="text-editor">
<state>
<caret column="14" selection-start-column="14" selection-end-column="14" />
<state relative-caret-position="136">
<caret line="8" selection-start-line="8" selection-end-line="8" />
</state> </state>
</provider> </provider>
</entry> </entry>
@@ -25,14 +25,6 @@
<component name="Git.Settings"> <component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" /> <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component> </component>
<component name="ProjectConfigurationFiles">
<option name="files">
<list>
<option value="$PROJECT_DIR$/.idea/vcs.xml" />
<option value="$PROJECT_DIR$/.idea/encodings.xml" />
</list>
</option>
</component>
<component name="ProjectFrameBounds" extendedState="6"> <component name="ProjectFrameBounds" extendedState="6">
<option name="x" value="20" /> <option name="x" value="20" />
<option name="y" value="21" /> <option name="y" value="21" />
@@ -90,28 +82,37 @@
<option name="number" value="Default" /> <option name="number" value="Default" />
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1569259778451</updated> <updated>1569259778451</updated>
<workItem from="1569259782086" duration="695000" />
<workItem from="1569259782086" duration="1042000" />
</task>
<task id="LOCAL-00001" summary="git init">
<created>1569260717145</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1569260717145</updated>
</task> </task>
<option name="localTasksCounter" value="2" />
<servers /> <servers />
</component> </component>
<component name="TimeTrackingManager"> <component name="TimeTrackingManager">
<option name="totallyTimeSpent" value="695000" />
<option name="totallyTimeSpent" value="1042000" />
</component> </component>
<component name="ToolWindowManager"> <component name="ToolWindowManager">
<frame x="-8" y="-8" width="1936" height="1056" extended-state="6" /> <frame x="-8" y="-8" width="1936" height="1056" extended-state="6" />
<editor active="true" />
<layout> <layout>
<window_info id="Image Layers" /> <window_info id="Image Layers" />
<window_info id="Designer" /> <window_info id="Designer" />
<window_info id="UI Designer" /> <window_info id="UI Designer" />
<window_info id="Capture Tool" /> <window_info id="Capture Tool" />
<window_info id="Favorites" side_tool="true" /> <window_info id="Favorites" side_tool="true" />
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.14072494" />
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.14072494" />
<window_info id="Structure" order="1" side_tool="true" weight="0.25" /> <window_info id="Structure" order="1" side_tool="true" weight="0.25" />
<window_info anchor="bottom" id="Docker" show_stripe_button="false" /> <window_info anchor="bottom" id="Docker" show_stripe_button="false" />
<window_info anchor="bottom" id="Database Changes" /> <window_info anchor="bottom" id="Database Changes" />
<window_info anchor="bottom" id="Version Control" /> <window_info anchor="bottom" id="Version Control" />
<window_info anchor="bottom" id="Terminal" /> <window_info anchor="bottom" id="Terminal" />
<window_info anchor="bottom" id="Event Log" side_tool="true" />
<window_info active="true" anchor="bottom" id="Event Log" side_tool="true" visible="true" weight="0.32936078" />
<window_info anchor="bottom" id="Message" order="0" /> <window_info anchor="bottom" id="Message" order="0" />
<window_info anchor="bottom" id="Find" order="1" /> <window_info anchor="bottom" id="Find" order="1" />
<window_info anchor="bottom" id="Run" order="2" /> <window_info anchor="bottom" id="Run" order="2" />
@@ -133,11 +134,15 @@
<component name="TypeScriptGeneratedFilesManager"> <component name="TypeScriptGeneratedFilesManager">
<option name="version" value="1" /> <option name="version" value="1" />
</component> </component>
<component name="VcsManagerConfiguration">
<MESSAGE value="git init" />
<option name="LAST_COMMIT_MESSAGE" value="git init" />
</component>
<component name="editorHistoryManager"> <component name="editorHistoryManager">
<entry file="file://$PROJECT_DIR$/src/xyz/nextn/Main.java"> <entry file="file://$PROJECT_DIR$/src/xyz/nextn/Main.java">
<provider selected="true" editor-type-id="text-editor"> <provider selected="true" editor-type-id="text-editor">
<state>
<caret column="14" selection-start-column="14" selection-end-column="14" />
<state relative-caret-position="136">
<caret line="8" selection-start-line="8" selection-end-line="8" />
</state> </state>
</provider> </provider>
</entry> </entry>


+ 4
- 0
src/xyz/nextn/Client.java View File

@@ -0,0 +1,4 @@
package xyz.nextn;

public class Client {
}

+ 1
- 1
src/xyz/nextn/Main.java View File

@@ -3,6 +3,6 @@ package xyz.nextn;
public class Main { public class Main {


public static void main(String[] args) { public static void main(String[] args) {
// write your code here
} }
} }

+ 4
- 0
src/xyz/nextn/Server.java View File

@@ -0,0 +1,4 @@
package xyz.nextn;

public class Server {
}

Loading…
Cancel
Save