List of usage examples for org.eclipse.swt.widgets Composite subclass-usage
From source file Ch5Persistent.java
public class Ch5Persistent extends Composite { private static final String END_STYLES_MARK = "***EndStyles***"; private static final String START_STYLES_MARK = "***Styles***"; private static final String START_TEXT_MARK = "***Text***";
From source file Spinner.java
public class Spinner extends Composite { static final int BUTTON_WIDTH = 16; Text text;
From source file peakmlviewer.widgets.IPeakIntensityGraph.java
/** * */ public class IPeakIntensityGraph extends Composite { // constructor(s) @SuppressWarnings("deprecation")
From source file MainClass.java
class GridComposite extends Composite { public GridComposite(Composite c) { super(c, SWT.BORDER); GridLayout gl = new GridLayout(); gl.numColumns = 3;
From source file Ch9TableEditorComposite.java
public class Ch9TableEditorComposite extends Composite { private static final Object[] CONTENT = new Object[] { new EditableTableItem("item 1", new Integer(0)), new EditableTableItem("item 2", new Integer(1)) }; private static final String[] VALUE_SET = new String[] { "xxx", "yyy", "zzz" };
From source file ch.unibe.iam.scg.archie.ui.charts.AbstractChartComposite.java
/**
* <p>
* An abstract chart composite class. Inheriting from an SWT
* <code>Composite</code>, it can be used in UI classes. This class also
* implements the <code>IJobChangeListener</code> interface. It contains an
* <code>AbstractDatasetCreator</code> which creates the corresponding
From source file Ch5CompletionEditor.java
public class Ch5CompletionEditor extends Composite { private TextViewer textViewer; private WordTracker wordTracker; private static final int MAX_QUEUE_SIZE = 200;
From source file Ch12FileBrowserComposite.java
public class Ch12FileBrowserComposite extends Composite { private FileBrowser browser; public Ch12FileBrowserComposite(Composite parent) { super(parent, SWT.NONE);
From source file org.jcryptool.visual.verifiablesecretsharing.views.ReconstructionChartComposite.java
public class ReconstructionChartComposite extends Composite { private int[] playerID = { 0 }; private BigInteger[] shares = { new BigInteger("0") }; private Polynomial reconstructedPolynom = new Polynomial(new BigInteger[] { new BigInteger("" + 0) }); private JFreeChart chart; private Composite body;
From source file eu.stratosphere.addons.visualization.swt.SWTJobTabItem.java
public class SWTJobTabItem extends Composite implements Listener { private final ChartComposite cpuChart; private final ChartComposite memoryChart;