- ## NERD_tree_1 [plain_text]
- " Press ? for help
- >----------Bookmarks----------
- >dev-uni <mhannen/Develop/uni/
- >dev-work-i9 <Develop/work/i9/
- >uni <s/mhannen/Documents/uni/
- >uni-ba <s/uni/bachelorarbeit/
- .. (up a dir)
- /Users/mhannen/Develop/work/i9/
- |+databases/
- |~java_sources/
- | |+bin/
- | |+i9/
- | |~weka/
- | | |+clusterquality/
- | | |~gui/
- | | | |~explorer/
- | | | | |+coda/
- | | | | |+tools/
- | | | | |-CodaPanel.java
- | | | | |-Explorer.props
- | | | | |-KernelPanel.java
- | | | | |-MCExplorerPanel.java
- | | | | |-OutlierPanel.java
- | | | | |-SCObserverPanel.java
- | | | | `-SubspaceClustererPanel.java
- | | | |+visualize/
- | | | |-BracketingPanel.java
- | | | |-GenericPropertiesCreator.props
- | | | |-OutlierEvaluationPanel.java
- | | | `-SubspaceClusterEvaluationPanel.java
- | | |+outlier/
- | | |+outlierquality/
- | | |+subspaceClusterer/
- | | `-siam09.fatjar
- | |-AbsoluteLayout.jar
- | |-collections-generic-4.01.jar
- | |-commons-beanutils-1.8.0-bin.zip
- | |-commons-beanutils-1.8.0-src.zip
- | |-ij.jar
- | |-j3dcore.jar
- | |-j3dutils.jar
- | |-Jama.jar
- | |-javaGD.jar
- | |-jcommon-1.0.0.jar
- | |-jcommon-1.0.13.jar
- | |-jcommon-1.0.8.jar
- | |-jfreechart-1.0.1.jar
- | |-jfreechart-1.0.10.jar
- | |-jfreechart-1.0.4.jar
- | |-jmf.jar
- | |-jRenderer3D.jar
- | |-JRI.jar
- | |-jung-algorithms-2.0-beta1.jar
- | |-jung-api-2.0-beta1.jar
- | |-jung-graph-impl-2.0-beta1.jar
- | |-jung-io-2.0-beta1.jar
- | |-junit-4.5.jar
- | |-KDD09.fatjar
- | |-log4j-1.2.15.jar
- | |-lpsolve55j.jar
- | |-mail.jar
- | |-poi-3.0.jar
- | |-qhull-2003.1.zip
- | |-QueryUML.png
- | |-RTree-UML(version-2).png
- | |-tags
- | |-vecmath.jar
- | |-visualsubclu.jar
- | |-visualsubclu.jardesc
- | |-weka.jar
- | |-weka.jardesc
- | `-xmlgraphics-commons-1.3.1.jar
- |+releases/
- `+RemoteSystemsTempFiles/
- ## Develop/work/i9/java_sources/weka/gui/explorer/CodaPanel.java [java]
- /**
- * @author Matthias Hannen (matthias.hannen@rwth-aachen.de)
- */
- package weka.gui.explorer;
- import java.awt.BorderLayout;
- import javax.swing.JPanel;
- import javax.swing.JTabbedPane;
- import weka.core.Instances;
- import weka.gui.Logger;
- import weka.gui.explorer.Explorer.ExplorerPanel;
- import weka.gui.explorer.Explorer.LogHandler;
- import weka.gui.explorer.coda.AnalysisPanel;
- import weka.gui.explorer.coda.DeterminationPanel;
- // TODO: Auto-generated Javadoc
- /**
- * The Class CodaPanel.
- */
- public class CodaPanel extends JPanel implements ExplorerPanel, LogHandler
- {
- /** The Constant serialVersionUID. */
- private static final long serialVersionUID = -7909659322741533771L;
- /** The destination for log/status messages. */
- @SuppressWarnings ("unused")
- private Logger logger = null;
- /** The main set of instances we're playing with. */
- @SuppressWarnings ("unused")
- private Instances instances = null;
- /** The main pane. */
- private JTabbedPane mainPane = null;
- /** The determination panel. */
- private DeterminationPanel determinationPanel = null;
- /**
- * Instantiates a new coda panel.
- */
- public CodaPanel ()
- {
- final AnalysisPanel analysisPanel = new AnalysisPanel ();
- this.determinationPanel = new DeterminationPanel (analysisPanel);
- this.mainPane = mainPaneLayout (new JPanel[] { this.determinationPanel, analysisPanel });
- setLayout (new BorderLayout ());
- add (this.mainPane, BorderLayout.CENTER);
- analysisPanel.setParent (this.mainPane);
- }
- /**
- * Main panel layout.
- *
- * @param tabs
- * the tabs
- * @return the j panel
- */
- private JTabbedPane mainPaneLayout (final JPanel[] tabs)
- {
- final JTabbedPane pane = new JTabbedPane ();
- for (final JPanel tab : tabs)
- pane.addTab (tab.getName (), tab);
- return pane;
- }
- /**
- * Gets the explorer.
- *
- * @return the explorer
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getExplorer()
- */
- @Override
- public Explorer getExplorer ()
- {
- return null;
- }
- /**
- * Gets the tab title.
- *
- * @return the tab title
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getTabTitle()
- */
- @Override
- public String getTabTitle ()
- {
- return "CoDA";
- }
- /**
- * Gets the tab title tool tip.
- *
- * @return the tab title tool tip
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getTabTitleToolTip()
- */
- @Override
- public String getTabTitleToolTip ()
- {
- return "Interactive Cluster Based Concept Discovery";
- }
- /**
- * Sets the explorer.
- *
- * @param explorer
- * the new explorer
- * @see weka.gui.explorer.Explorer.ExplorerPanel#setExplorer(weka.gui.explorer.Explorer)
- */
- @Override
- public void setExplorer (final Explorer explorer)
- {
- }
- /**
- * Sets the instances.
- *
- * @param instances
- * the new instances
- * @see weka.gui.explorer.Explorer.ExplorerPanel#setInstances(weka.core.Instances)
- */
- @Override
- public void setInstances (final Instances instances)
- {
- this.instances = instances;
- }
- /**
- * Sets the log.
- *
- * @param logger
- * the new log
- * @see weka.gui.explorer.Explorer.LogHandler#setLog(weka.gui.Logger)
- */
- @Override
- public void setLog (final Logger logger)
- {
- this.logger = logger;
- }
- }
- ## Develop/work/i9/java_sources/weka/gui/explorer/CodaPanel.java [java]
- /**
- * @author Matthias Hannen (matthias.hannen@rwth-aachen.de)
- */
- package weka.gui.explorer;
- import java.awt.BorderLayout;
- import javax.swing.JPanel;
- import javax.swing.JTabbedPane;
- import weka.core.Instances;
- import weka.gui.Logger;
- import weka.gui.explorer.Explorer.ExplorerPanel;
- import weka.gui.explorer.Explorer.LogHandler;
- import weka.gui.explorer.coda.AnalysisPanel;
- import weka.gui.explorer.coda.DeterminationPanel;
- // TODO: Auto-generated Javadoc
- /**
- * The Class CodaPanel.
- */
- public class CodaPanel extends JPanel implements ExplorerPanel, LogHandler
- {
- /** The Constant serialVersionUID. */
- private static final long serialVersionUID = -7909659322741533771L;
- /** The destination for log/status messages. */
- @SuppressWarnings ("unused")
- private Logger logger = null;
- /** The main set of instances we're playing with. */
- @SuppressWarnings ("unused")
- private Instances instances = null;
- /** The main pane. */
- private JTabbedPane mainPane = null;
- /** The determination panel. */
- private DeterminationPanel determinationPanel = null;
- /**
- * Instantiates a new coda panel.
- */
- public CodaPanel ()
- {
- final AnalysisPanel analysisPanel = new AnalysisPanel ();
- this.determinationPanel = new DeterminationPanel (analysisPanel);
- this.mainPane = mainPaneLayout (new JPanel[] { this.determinationPanel, analysisPanel });
- setLayout (new BorderLayout ());
- add (this.mainPane, BorderLayout.CENTER);
- analysisPanel.setParent (this.mainPane);
- }
- /**
- * Main panel layout.
- *
- * @param tabs
- * the tabs
- * @return the j panel
- */
- private JTabbedPane mainPaneLayout (final JPanel[] tabs)
- {
- final JTabbedPane pane = new JTabbedPane ();
- for (final JPanel tab : tabs)
- pane.addTab (tab.getName (), tab);
- return pane;
- }
- /**
- * Gets the explorer.
- *
- * @return the explorer
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getExplorer()
- */
- @Override
- public Explorer getExplorer ()
- {
- return null;
- }
- /**
- * Gets the tab title.
- *
- * @return the tab title
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getTabTitle()
- */
- @Override
- public String getTabTitle ()
- {
- return "CoDA";
- }
- /**
- * Gets the tab title tool tip.
- *
- * @return the tab title tool tip
- * @see weka.gui.explorer.Explorer.ExplorerPanel#getTabTitleToolTip()
- */
- @Override
- public String getTabTitleToolTip ()
- {
- return "Interactive Cluster Based Concept Discovery";
- }
- /**
- * Sets the explorer.
- *
- * @param explorer
- * the new explorer
- * @see weka.gui.explorer.Explorer.ExplorerPanel#setExplorer(weka.gui.explorer.Explorer)
- */
- @Override
- public void setExplorer (final Explorer explorer)
- {
- }
- /**
- * Sets the instances.
- *
- * @param instances
- * the new instances
- * @see weka.gui.explorer.Explorer.ExplorerPanel#setInstances(weka.core.Instances)
- */
- @Override
- public void setInstances (final Instances instances)
- {
- this.instances = instances;
- }
- /**
- * Sets the log.
- *
- * @param logger
- * the new log
- * @see weka.gui.explorer.Explorer.LogHandler#setLog(weka.gui.Logger)
- */
- @Override
- public void setLog (final Logger logger)
- {
- this.logger = logger;
- }
- }