| @@ -0,0 +1,21 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
| public static void main(String[] args) { | ||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,19 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
|
|
||
| public static void main(String[] args) { | ||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,32 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.io.File; | ||
| import java.io.IOException | ||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
|
|
||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| try { | ||
| mainframe.setIconImage(ImageIO.read(new File("/resource/icons/mainframeIcon.png"))); | ||
| } catch(IOException e) { | ||
| e.printStackTrace(); | ||
| } | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,41 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.awt.Image; | ||
| import java.awt.image.BufferedImage; | ||
| import java.io.File; | ||
| import java.io.IOException; | ||
| import java.io.InputStream; | ||
|
|
||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
| String imagePath = "mainframeIcon.png"; | ||
| InputStream imgStream = ToTheMon.class.getResourceAsStream(imagePath); | ||
| try { | ||
| BufferedImage mainframeIcon = ImageIO.read(mainframeIcon); | ||
| } catch(IOException e) { | ||
| e.printStackTrace(); | ||
| } | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| mainframe.setIconImage(mainframeIcon); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,33 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.io.File; | ||
| import java.io.IOException; | ||
|
|
||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
|
|
||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| try { | ||
| mainframe.setIconImage(ImageIO.read(new File("/resource/icons/mainframeIcon.png"))); | ||
| } catch(IOException e) { | ||
| e.printStackTrace(); | ||
| } | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,32 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.awt.Image; | ||
| import java.awt.Toolkit; | ||
| import java.io.File; | ||
| import java.io.IOException; | ||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
|
|
||
| Image mainframeIcon = Toolkit.getDefaultToolkit().getImage("mainframeIcon.png"); | ||
|
|
||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| mainframe.setIconImage(mainframeIcon); | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,41 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.awt.Image; | ||
| import java.awt.image.BufferedImage; | ||
| import java.io.File; | ||
| import java.io.IOException; | ||
| import java.io.InputStream; | ||
|
|
||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
| String imagePath = "mainframeIcon.png"; | ||
| InputStream imgStream = ToTheMon.class.getResourceAsStream(imagePath ); | ||
| try { | ||
| BufferedImage mainframeIcon = ImageIO.read(imgStream); | ||
| } catch(IOException e) { | ||
| e.printStackTrace(); | ||
| } | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| mainframe.setIconImage(mainframeIcon); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,32 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.awt.Image; | ||
| import java.awt.Toolkit; | ||
| import java.io.File; | ||
| import java.io.IOException; | ||
| import javax.imageio.ImageIO; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
|
|
||
| Image mainframeIcon = Toolkit.getDefaultToolkit().getImage("/resource/icons/mainframeIcon.png"); | ||
|
|
||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| mainframe.setIconImage(mainframeIcon); | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,3 @@ | ||
| #GitProjectData | ||
| #Mon Oct 05 18:51:11 CDT 2015 | ||
| .gitdir=../.git |
| @@ -0,0 +1 @@ | ||
| @@ -0,0 +1 @@ | ||
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| version=1 |
| @@ -0,0 +1,3 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n | ||
| preferredTargets=default\:default| |
| @@ -0,0 +1,2 @@ | ||
| GitRepositoriesView.GitDirectories=C\:\\Users\\Peter\\Documents\\GitHub\\To-The-Mon\\.git; | ||
| eclipse.preferences.version=1 |
| @@ -0,0 +1,5 @@ | ||
| action=ASK | ||
| anonymizeMessages=true | ||
| configured=true | ||
| eclipse.preferences.version=1 | ||
| problemsZipEtag="1eec7d-52145ac41b280" |
| @@ -0,0 +1,8 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled | ||
| org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
| org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | ||
| org.eclipse.jdt.core.compiler.compliance=1.7 | ||
| org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
| org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
| org.eclipse.jdt.core.compiler.source=1.7 |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1444088757773">\r\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\r\n<vm id\="1444088757773" name\="jre7" path\="C\:\\Program Files\\Java\\jre7"/>\r\n</vmType>\r\n</vmSettings>\r\n |
| @@ -0,0 +1,20 @@ | ||
| content_assist_disabled_computers=org.eclipse.jdt.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaNoTypeProposalCategory\u0000org.eclipse.jdt.ui.textProposalCategory\u0000org.eclipse.jdt.ui.javaTypeProposalCategory\u0000org.eclipse.recommenders.calls.rcp.proposalCategory.templates\u0000org.eclipse.recommenders.chain.rcp.proposalCategory.chain\u0000org.eclipse.mylyn.java.ui.javaAllProposalCategory\u0000 | ||
| content_assist_lru_history=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><history maxLHS\="100" maxRHS\="10"/> | ||
| content_assist_number_of_computers=19 | ||
| content_assist_proposals_background=255,255,255 | ||
| content_assist_proposals_foreground=0,0,0 | ||
| eclipse.preferences.version=1 | ||
| fontPropagated=true | ||
| org.eclipse.jdt.ui.editor.tab.width= | ||
| org.eclipse.jdt.ui.formatterprofiles.version=12 | ||
| org.eclipse.jdt.ui.javadoclocations.migrated=true | ||
| org.eclipse.jdt.ui.text.code_templates_migrated=true | ||
| org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/> | ||
| org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/> | ||
| org.eclipse.jdt.ui.text.templates_migrated=true | ||
| org.eclipse.jface.textfont=1|Consolas|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Consolas; | ||
| proposalOrderMigrated=true | ||
| spelling_locale_initialized=true | ||
| tabWidthPropagated=true | ||
| useAnnotationsPrefPage=true | ||
| useQuickDiffPrefPage=true |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.m2e.discovery.pref.projects= |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| mylyn.attention.migrated=true |
| @@ -0,0 +1,3 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.mylyn.java.ui.run.count.3_10_0=1 | ||
| org.eclipse.mylyn.java.ui.run.count.3_1_0=1 |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true |
| @@ -0,0 +1,4 @@ | ||
| eclipse.preferences.version=1 | ||
| migrated.task.repositories.secure.store=true | ||
| org.eclipse.mylyn.tasks.ui.filters.nonmatching=true | ||
| org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true |
| @@ -0,0 +1,2 @@ | ||
| completion_tips_seen=org.eclipse.recommenders.completion.rcp.tips.types\:org.eclipse.recommenders.internal.subwords.rcp.subwords | ||
| eclipse.preferences.version=1 |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.team.ui.first_time=false |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| overviewRuler_migration=migrated_3.1 |
| @@ -0,0 +1,5 @@ | ||
| PROBLEMS_FILTERS_MIGRATE=true | ||
| eclipse.preferences.version=1 | ||
| platformState=1433100634486 | ||
| quickStart=false | ||
| tipsAndTricks=true |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| showIntro=false |
| @@ -0,0 +1,3 @@ | ||
| //org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false | ||
| PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery; | ||
| eclipse.preferences.version=1 |
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> | ||
| <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> | ||
| <listEntry value="/ToTheMon/src/net/dadarkgragon/tothemon/common/ToTheMon.java"/> | ||
| </listAttribute> | ||
| <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> | ||
| <listEntry value="1"/> | ||
| </listAttribute> | ||
| <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="net.dadarkgragon.tothemon.common.ToTheMon"/> | ||
| <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="ToTheMon"/> | ||
| </launchConfiguration> |
| @@ -0,0 +1,13 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <section name="org.eclipse.debug.ui.SCOPED_SAVE_SELECTION_DIALOG"> | ||
| <item value="309" key="DIALOG_WIDTH"/> | ||
| <item value="377" key="DIALOG_HEIGHT"/> | ||
| <item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/> | ||
| </section> | ||
| <section name="org.eclipse.debug.ui.SELECT_LAUNCH_SHORTCUT_DIALOG"> | ||
| <item value="270" key="DIALOG_WIDTH"/> | ||
| <item value="436" key="DIALOG_HEIGHT"/> | ||
| <item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,23 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <launchHistory> | ||
| <launchGroup id="org.eclipse.ui.externaltools.launchGroup"> | ||
| <mruHistory/> | ||
| <favorites/> | ||
| </launchGroup> | ||
| <launchGroup id="org.eclipse.debug.ui.launchGroup.profile"> | ||
| <mruHistory/> | ||
| <favorites/> | ||
| </launchGroup> | ||
| <launchGroup id="org.eclipse.debug.ui.launchGroup.debug"> | ||
| <mruHistory> | ||
| <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="ToTheMon"/> "/> | ||
| </mruHistory> | ||
| <favorites/> | ||
| </launchGroup> | ||
| <launchGroup id="org.eclipse.debug.ui.launchGroup.run"> | ||
| <mruHistory> | ||
| <launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="ToTheMon"/> "/> | ||
| </mruHistory> | ||
| <favorites/> | ||
| </launchGroup> | ||
| </launchHistory> |
| @@ -0,0 +1 @@ | ||
| ����version |
| @@ -0,0 +1 @@ | ||
| NRM� |
| @@ -0,0 +1,2 @@ | ||
| ����fingerprintactionmessage | ||
| problemUrlbugIdbugUrl |
| @@ -0,0 +1 @@ | ||
| java |
| @@ -0,0 +1,17 @@ | ||
| INDEX VERSION 1.127+C:\Users\Peter\Documents\GitHub\To-The-Mon\.metadata\.plugins\org.eclipse.jdt.core | ||
| 3133528496.index | ||
| 573543369.index | ||
| 1697886153.index | ||
| 4155206848.index | ||
| 1498219845.index | ||
| 1115467115.index | ||
| 3065916431.index | ||
| 1299022128.index | ||
| 163172794.index | ||
| 4041092966.index | ||
| 3698668292.index | ||
| 3974580528.index | ||
| 30765161.index | ||
| 4108727661.index | ||
| 305854171.index | ||
| 1995173708.index |
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <dirs> | ||
| <entry loc="C:\Program Files\Java\jre7" stamp="1433097923854"/> | ||
| </dirs> |
| @@ -0,0 +1,22 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <libraryInfos> | ||
| <libraryInfo home="C:\Program Files\Java\jre7" version="1.7.0_80"> | ||
| <bootpath> | ||
| <entry path="C:\Program Files\Java\jre7\lib\resources.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\rt.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\sunrsasign.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\jsse.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\jce.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\charsets.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\lib\jfr.jar"/> | ||
| <entry path="C:\Program Files\Java\jre7\classes"/> | ||
| </bootpath> | ||
| <extensionDirs> | ||
| <entry path="C:\Program Files\Java\jre7\lib\ext"/> | ||
| <entry path="C:\WINDOWS\Sun\Java\lib\ext"/> | ||
| </extensionDirs> | ||
| <endorsedDirs> | ||
| <entry path="C:\Program Files\Java\jre7\lib\endorsed"/> | ||
| </endorsedDirs> | ||
| </libraryInfo> | ||
| </libraryInfos> |
| @@ -0,0 +1,2 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <typeInfoHistroy/> |
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <qualifiedTypeNameHistroy> | ||
| <fullyQualifiedTypeName name="javax.swing.JFrame"/> | ||
| <fullyQualifiedTypeName name="java.awt.image.BufferedImage"/> | ||
| <fullyQualifiedTypeName name="java.io.InputStream"/> | ||
| <fullyQualifiedTypeName name="javax.swing.Icon"/> | ||
| <fullyQualifiedTypeName name="java.net.URL"/> | ||
| <fullyQualifiedTypeName name="javax.swing.ImageIcon"/> | ||
| <fullyQualifiedTypeName name="javax.imageio.ImageIO"/> | ||
| <fullyQualifiedTypeName name="java.io.File"/> | ||
| <fullyQualifiedTypeName name="java.io.IOException"/> | ||
| <fullyQualifiedTypeName name="java.awt.Toolkit"/> | ||
| <fullyQualifiedTypeName name="java.awt.Image"/> | ||
| </qualifiedTypeNameHistroy> |
| @@ -0,0 +1,27 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <item value="JavaSE-1.7" key="org.eclipse.jdt.ui.last.selected.execution.enviroment"/> | ||
| <section name="OptionalMessageDialog.hide."> | ||
| <item value="true" key="org.eclipse.jdt.ui.typecomment.deprecated"/> | ||
| </section> | ||
| <section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"> | ||
| <item value="true" key="group_libraries"/> | ||
| <item value="false" key="linkWithEditor"/> | ||
| <item value="1" key="layout"/> | ||
| <item value="1" key="rootMode"/> | ||
| <item value="<?xml version="1.0" encoding="UTF-8"?>
<packageExplorer group_libraries="1" layout="1" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1444088733088">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.mylyn.java.ui.MembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.m2e.MavenModuleFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</packageExplorer>" key="memento"/> | ||
| </section> | ||
| <section name="completion_proposal_size"> | ||
| </section> | ||
| <section name="JavaElementSearchActions"> | ||
| </section> | ||
| <section name="quick_assist_proposal_size"> | ||
| </section> | ||
| <section name="NewClassWizardPage"> | ||
| <item value="false" key="create_constructor"/> | ||
| <item value="true" key="create_unimplemented"/> | ||
| </section> | ||
| <section name="NewPackageWizardPage"> | ||
| <item value="false" key="create_package_info_java"/> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <session version="1.0"> | ||
| <refactoring comment="Delete resource 'To the Mon'" deleteContents="true" description="Delete resource 'To the Mon'" element1="/To the Mon" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1444089062570"/> | ||
| </session> |
| @@ -0,0 +1 @@ | ||
| 1444089062570 Delete resource 'To the Mon' |
| @@ -0,0 +1,12 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <section name="RefactoringStatusDialog"> | ||
| <item value="816" key="DIALOG_WIDTH"/> | ||
| <item value="490" key="DIALOG_HEIGHT"/> | ||
| <item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/> | ||
| </section> | ||
| <section name="RefactoringWizard.preview"> | ||
| <item value="400" key="height"/> | ||
| <item value="600" key="width"/> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,43 @@ | ||
| <configuration scan="true"> | ||
| <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
| <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> | ||
| <pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern> | ||
| </encoder> | ||
| <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
| <level>OFF</level> <!-- change to DEBUG to mimic '-consolelog' behaviour --> | ||
| </filter> | ||
| </appender> | ||
|
|
||
| <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
| <File>${org.eclipse.m2e.log.dir}/0.log</File> | ||
| <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | ||
| <FileNamePattern>${org.eclipse.m2e.log.dir}/%i.log</FileNamePattern> | ||
| <MinIndex>1</MinIndex> | ||
| <MaxIndex>10</MaxIndex> | ||
| </rollingPolicy> | ||
| <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> | ||
| <MaxFileSize>100MB</MaxFileSize> | ||
| </triggeringPolicy> | ||
| <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"> | ||
| <pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern> | ||
| </encoder> | ||
| </appender> | ||
|
|
||
| <appender name="EclipseLog" class="org.eclipse.m2e.logback.appender.EclipseLogAppender"> | ||
| <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
| <level>WARN</level> | ||
| </filter> | ||
| </appender> | ||
|
|
||
| <appender name="MavenConsoleLog" class="org.eclipse.m2e.logback.appender.MavenConsoleAppender"> | ||
| </appender> | ||
|
|
||
| <root level="INFO"> | ||
| <appender-ref ref="FILE" /> | ||
| <appender-ref ref="STDOUT" /> | ||
| <appender-ref ref="EclipseLog" /> | ||
| <appender-ref ref="MavenConsoleLog" /> | ||
| </root> | ||
|
|
||
| <logger name="com.ning.http.client" level="INFO" /> | ||
| </configuration> |
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <section name="Updater"> | ||
| <section name="VariablePage"> | ||
| </section> | ||
| <section name="ProgressPage"> | ||
| </section> | ||
| <section name="ConfirmationPage"> | ||
| </section> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <setup:Workspace | ||
| xmi:version="2.0" | ||
| xmlns:xmi="http://www.omg.org/XMI" | ||
| xmlns:setup="http://www.eclipse.org/oomph/setup/1.0" | ||
| name="workspace"/> |
| @@ -0,0 +1,17 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <section name="org.eclipse.ui.internal.QuickAccess"> | ||
| <item value="-1" key="dialogWidth"/> | ||
| <item value="-1" key="dialogHeight"/> | ||
| <list key="orderedProviders"> | ||
| </list> | ||
| <list key="textArray"> | ||
| </list> | ||
| <list key="orderedElements"> | ||
| </list> | ||
| <list key="textEntries"> | ||
| </list> | ||
| </section> | ||
| <section name="NewWizardAction"> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <workingSetManager> | ||
| <workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1444088733088_0" label="Window Working Set" name="Aggregate for window 1444088733088"/> | ||
| </workingSetManager> |
| @@ -0,0 +1,3 @@ | ||
| #Mon Oct 05 18:45:15 CDT 2015 | ||
| org.eclipse.core.runtime=2 | ||
| org.eclipse.platform=4.5.0.v20150522-2000 |
| @@ -0,0 +1 @@ | ||
| [[{"location":"C:\\Program Files\\Java\\jre7","type":"JRE","hints":{"EXECUTION_ENVIRONMENT":"JavaSE-1.7"}},"jre:jre:1.7.0"]] |
| @@ -0,0 +1 @@ | ||
| {} |
| @@ -0,0 +1,3 @@ | ||
| ���� | ||
| coordinatefingerprintssymbolic-names | ||
| classifiercallovrdselfcovrpselfmovrmctor |
| @@ -0,0 +1,7 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <classpath> | ||
| <classpathentry kind="src" path="src"/> | ||
| <classpathentry kind="src" path="resource"/> | ||
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> | ||
| <classpathentry kind="output" path="bin"/> | ||
| </classpath> |
| @@ -0,0 +1 @@ | ||
| /bin/ |
| @@ -0,0 +1,17 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <projectDescription> | ||
| <name>ToTheMon</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> |
| @@ -0,0 +1,11 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
| org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | ||
| org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
| org.eclipse.jdt.core.compiler.compliance=1.7 | ||
| 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=error | ||
| org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
| org.eclipse.jdt.core.compiler.source=1.7 |
| @@ -0,0 +1,29 @@ | ||
| package net.dadarkgragon.tothemon.common; | ||
|
|
||
| import java.awt.Image; | ||
| import java.awt.Toolkit; | ||
| import javax.swing.JFrame; | ||
|
|
||
| public class ToTheMon { | ||
|
|
||
| public static JFrame mainframe = new JFrame(); | ||
| public static int width = 1280; | ||
| public static int height = 720; | ||
| public static String title = "To the Mon"; | ||
|
|
||
|
|
||
| public static void main(String[] args) { | ||
|
|
||
| Image mainframeIcon = Toolkit.getDefaultToolkit().getImage("/resource/icons/mainframeIcon.png"); | ||
|
|
||
| mainframe.setVisible(true); | ||
| mainframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | ||
| mainframe.setSize(width, height); | ||
| mainframe.setTitle(title); | ||
| mainframe.setLocationRelativeTo(null); | ||
| mainframe.setIconImage(mainframeIcon); | ||
|
|
||
|
|
||
| } | ||
|
|
||
| } |