From f3e39935137cade68654ff0c003f82de2fa488a2 Mon Sep 17 00:00:00 2001 From: gac-S_Changer Date: Tue, 19 Jul 2016 11:40:28 +0200 Subject: [PATCH] Startup --- plugins/test.form | 28 ----------------------- plugins/test.java | 56 ---------------------------------------------- plugins/test2.java | 36 ----------------------------- 3 files changed, 120 deletions(-) delete mode 100644 plugins/test.form delete mode 100644 plugins/test.java delete mode 100644 plugins/test2.java diff --git a/plugins/test.form b/plugins/test.form deleted file mode 100644 index ff9cfab..0000000 --- a/plugins/test.form +++ /dev/null @@ -1,28 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/plugins/test.java b/plugins/test.java deleted file mode 100644 index b3ee633..0000000 --- a/plugins/test.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2014 Paul Scherrer Institute. All rights reserved. - */ - -import ch.psi.pshell.ui.Panel; -import ch.psi.utils.State; - -/** - * - */ -public class test extends Panel { - - public test() { - initComponents(); - } - - //Overridable callbacks - @Override - public void onInitialize(int runCount) { - - } - - @Override - public void onStateChange(State state, State former) { - - } - - @Override - public void onExecutedFile(String fileName, Object result) { - } - - - //Callback to perform update - in event thread - @Override - protected void doUpdate() { - } - - @SuppressWarnings("unchecked") - // //GEN-BEGIN:initComponents - private void initComponents() { - - javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); - this.setLayout(layout); - layout.setHorizontalGroup( - layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGap(0, 449, Short.MAX_VALUE) - ); - layout.setVerticalGroup( - layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGap(0, 137, Short.MAX_VALUE) - ); - }// //GEN-END:initComponents - - // Variables declaration - do not modify//GEN-BEGIN:variables - // End of variables declaration//GEN-END:variables -} diff --git a/plugins/test2.java b/plugins/test2.java deleted file mode 100644 index e9173c4..0000000 --- a/plugins/test2.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) 2014 Paul Scherrer Institute. All rights reserved. - */ - -import ch.psi.pshell.ui.Plugin; -import ch.psi.utils.State; - -/** - * - */ -public class test2 implements Plugin { - - //Overridable callbacks - @Override - public void onStart() { - } - - @Override - public void onStop() { - } - - @Override - public void onInitialize(int runCount) { - - } - - @Override - public void onStateChange(State state, State former) { - - } - - @Override - public void onExecutedFile(String fileName, Object result) { - } - -}