Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
starting out
  • Loading branch information
jsn13002 authored and jsn13002 committed Feb 19, 2016
0 parents commit d664c67
Show file tree
Hide file tree
Showing 12 changed files with 613 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Party_APP/.classpath
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/OSGi%Minimum-1.2"/>
<classpathentry kind="output" path="bin"/>
</classpath>
17 changes: 17 additions & 0 deletions Party_APP/.project
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Party_APP</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
11 changes: 11 additions & 0 deletions Party_APP/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.4
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
org.eclipse.jdt.core.compiler.source=1.3
505 changes: 505 additions & 0 deletions Party_APP/ClassDiagram.cld

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions Party_APP/InduvidualDiagram.cld
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<net.java.amateras.uml.model.RootModel>
<backgroundColor>
<red>255</red>
<green>255</green>
<blue>206</blue>
</backgroundColor>
<foregroundColor>
<red>0</red>
<green>0</green>
<blue>0</blue>
</foregroundColor>
<showIcon>true</showIcon>
<listeners serialization="custom">
<java.beans.PropertyChangeSupport>
<default>
<source class="net.java.amateras.uml.model.RootModel" reference="../../../.."/>
<propertyChangeSupportSerializedDataVersion>2</propertyChangeSupportSerializedDataVersion>
</default>
<null/>
</java.beans.PropertyChangeSupport>
</listeners>
<sourceConnections/>
<targetConnections/>
<children/>
<filterProperty/>
</net.java.amateras.uml.model.RootModel>
Binary file added Party_APP/bin/controller/ThemePreset$preSet.class
Binary file not shown.
Binary file added Party_APP/bin/controller/ThemePreset.class
Binary file not shown.
Binary file added Party_APP/bin/model/WhatUp.class
Binary file not shown.
Binary file added Party_APP/bin/view/Party.class
Binary file not shown.
19 changes: 19 additions & 0 deletions Party_APP/src/controller/ThemePreset.java
@@ -0,0 +1,19 @@
package controller;
import java.util.Scanner;


public class ThemePreset {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc= new Scanner (System.in);
System.out.println("Select Theme: ");
}

class preSet(){

}
}
15 changes: 15 additions & 0 deletions Party_APP/src/model/WhatUp.java
@@ -0,0 +1,15 @@
package model;

public class WhatUp
{

/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
System.out.println("Hello World!");
}

}
13 changes: 13 additions & 0 deletions Party_APP/src/view/Party.java
@@ -0,0 +1,13 @@
package view;

public class Party {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

}

}

0 comments on commit d664c67

Please sign in to comment.