Source stringclasses 1
value | Date int32 2.01k 2.01k | Text stringlengths 3 15.9M | Token_count int32 1 2.44M |
|---|---|---|---|
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2012 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 1,209 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2012 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 1,008 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2011 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 2,103 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2012 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 1,158 |
github-java-corpus | 2,012 | /***************************************************************************
* Copyright (C) 2003-2009 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either vers... | 1,443 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2011 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 952 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2011 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 1,105 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2003-2012 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This... | 1,105 |
github-java-corpus | 2,012 | package org.uispec4j;
public class ItemNotFoundException extends RuntimeException {
public ItemNotFoundException(String message) {
super(message);
}
}
| 30 |
github-java-corpus | 2,012 | package org.uispec4j;
/**
* Thrown when several components match a given search specification in {@link Panel}.
*/
public class ComponentAmbiguityException extends RuntimeException {
public ComponentAmbiguityException(String message) {
super(message);
}
}
| 54 |
github-java-corpus | 2,012 | package org.uispec4j.extension;
import org.objectweb.asm.*;
import org.uispec4j.ComponentAmbiguityException;
import org.uispec4j.ItemNotFoundException;
import org.uispec4j.Panel;
import org.uispec4j.UIComponent;
import org.uispec4j.finder.ComponentFinder;
import org.uispec4j.finder.ComponentMatcher;
import org.uispec4... | 2,357 |
github-java-corpus | 2,012 | package org.uispec4j.extension;
class Extension {
private String componentName;
private String componentClassName;
public Extension(String componentName, String componentClassName) {
this.componentName = componentName;
this.componentClassName = componentClassName;
}
public String getComponentName()... | 81 |
github-java-corpus | 2,012 | package org.uispec4j.extension;
import org.objectweb.asm.ClassReader;
import org.uispec4j.AbstractUIComponent;
import org.uispec4j.Panel;
import org.uispec4j.UIComponent;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.ut... | 1,066 |
github-java-corpus | 2,012 | package org.uispec4j;
import java.awt.*;
/**
* Performs a conversion between internal and tested cell values in a {@link ListBox} component
* This interface is meant to be used when the JList component used by the application
* uses renderers other than JLabel components.
*
* @see ListBox#setCellValueConverter
... | 89 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.UISpecAssert;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
import javax.swing.text.BadLocationException;
import javax.swing.text.Document;
import javax.swing.text.JTextComponent;
import ja... | 658 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.ColorUtils;
import org.uispec4j.utils.KeyUtils;
import org.uispec4j.utils.UIComponentFactory;
import org.uispec4j.xml.XmlWriter;
import javax.swing.*;
import javax.swing... | 1,563 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
/**
* Wrapper for JRadioButton components.
*/
public class RadioButton extends AbstractButton {
public static final String TYPE_NAME = "radioButton";
public static fi... | 177 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.TriggerRunner;
import javax.swing.*;
/**
* Base class for button-like components (toggle buttons, check boxes, etc.)
*/
public abstract class AbstractButton extends A... | 493 |
github-java-corpus | 2,012 | package org.uispec4j.assertion;
import org.uispec4j.UISpec4J;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.Utils;
/**
* Checks the validity of Assertion objects.
*
* @see <a href="http://www.uispec4j.org/assertions">Using Assertions</a>
*/
public class UISpecAssert {
/*... | 1,624 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
import java.util.ArrayList;
import java.util.List;
enum TestLibraries {
JUNIT("junit.framework.Assert", JUnitLibrary.class),
TESTNG("org.testng.Assert", TestNGLibrary.class);
private String representativeClassPath;
private TestLibrary dependency;
private stat... | 675 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
import org.testng.Assert;
class TestNGLibrary implements TestLibrary {
public void fail(String message) {
Assert.fail(message);
}
public void assertTrue(boolean b) {
Assert.assertTrue(b);
}
public void assertTrue(String message, boolean b) {
Asser... | 257 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
import junit.framework.Assert;
class JUnitLibrary implements TestLibrary {
public void fail(String message) {
Assert.fail(message);
}
public void assertTrue(boolean b) {
Assert.assertTrue(b);
}
public void assertTrue(String message, boolean b) {
A... | 256 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
interface TestLibrary {
public void fail(String message);
public void assertTrue(boolean b);
public void assertTrue(String message, boolean b);
public void assertFalse(String description, boolean b);
public void assertEquals(String expected, String actual);
... | 134 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
public class AssertAdapter {
private static final TestLibrary ASSERT;
static {
ASSERT = TestLibraries.loadDependency();
}
public static void fail(String message) {
ASSERT.fail(message);
}
public static void assertTrue(boolean b) {
ASSERT.assertT... | 281 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
class InvalidLibrary implements TestLibrary {
private String message;
public InvalidLibrary(String message) {
this.message = message;
}
public void fail(String message) {
error();
}
public void assertTrue(boolean b) {
error();
}
public void... | 238 |
github-java-corpus | 2,012 | package org.uispec4j.assertion.testlibrairies;
class UISpecLibrary implements TestLibrary {
public void fail(String message) {
throw new RuntimeException(message);
}
public void assertTrue(boolean b) {
assertTrue("Expected true, but was false.", b);
}
public void assertTrue(String message, boolean ... | 280 |
github-java-corpus | 2,012 | package org.uispec4j.assertion;
/**
* Interface used for defining conditions. These assertions are meant to be used
* essentially with the {@link UISpecAssert] "assertXxx" and "waitUntil" methods.
*/
public abstract class Assertion {
/**
* Returns true if the {@link #check()} method does not fail.
*/
pub... | 132 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
import java.awt.event.FocusListener;
import java.awt.event.FocusEvent;
class TextBoxHandlerForLabel implements TextBox.Handler {
private JLabel jLabel;
public TextBoxH... | 624 |
github-java-corpus | 2,012 | package org.uispec4j;
import java.awt.*;
import java.awt.datatransfer.*;
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
/**
* Utility for changing and checking the contents of the system's clipboard.
*/
public class Clipboard {
public static final TextType HTML = new TextType("text/htm... | 929 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.DateUtils;
import javax.swing.*;
import java.text.ParseException;
import java.util.Date;
/**
* Wrapper for JSpinner components implementing a SpinnerDateModel.
*/
pub... | 436 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
/**
* Tags components that support tooltips
*/
public interface TooltipComponent {
Assertion tooltipEquals(String text);
Assertion tooltipContains(String text);
}
| 49 |
github-java-corpus | 2,012 | package org.uispec4j;
import javax.swing.*;
import java.awt.*;
/**
* Default implementation for the ListBoxCellValueConverter interface.
* Returns the text displayed by the renderer, only in the case of JLabel renderers -
* this method will return an empty String if the renderer is not a JLabel.
*/
public class D... | 136 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.utils.Utils;
import javax.swing.*;
import java.util.List;
/**
* Wrapper for JSpinner components implementing a SpinnerListModel.
*/
public class ListSpinner extends Spinner {
private SpinnerListModel model;
public ListSpinner(J... | 192 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
/**
* Base class for UIComponent implementations that wrap JComponent subclasses.
*/
public abstract class AbstractSwingUIComponent extends AbstractUIComponent implements... | 205 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.UISpecAssert;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.finder.StringMatcher;
import org.uispec4j.utils.ColorUtils;
import org.uispec4j.xml.XmlWriter;
import javax.swing.*;
import java.aw... | 931 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
import javax.swing.text.JTextComponent;
/**
* Wrapper for JTextComponent/JLabel components.
*/
public class TextBox extends AbstractSwingUIComponent {
public static fin... | 1,292 |
github-java-corpus | 2,012 | package org.uispec4j;
import static org.uispec4j.Key.Modifier;
import java.awt.*;
import java.awt.event.MouseEvent;
/**
* Utility for simulating mouse inputs.
*/
public class Mouse {
private Mouse() {
}
/**
* Clicks in the center of a UIComponent.
*/
public static void click(UIComponent uiComponent... | 1,140 |
github-java-corpus | 2,012 | package org.uispec4j;
import java.awt.*;
/**
* Performs a conversion between internal and tested cell values in a {@link Table} component
*
* @see Table#setCellValueConverter
* @see Table#setDefaultCellValueConverter
*/
public interface TableCellValueConverter {
Object getValue(int row, int column, Component r... | 74 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.finder.ComponentMatcher;
import javax.swing.*;
import java.awt.*;
/**
* Wrapper for JSpinner components.
*/
public class Spinner extends AbstractSwingUIComponent {
public... | 670 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
/**
* Wrapper for JPasswordField components.
*/
public class PasswordField extends AbstractUIComponent {
public static final String TYPE_NAME = "passwordField";
publi... | 205 |
github-java-corpus | 2,012 | package org.uispec4j;
import javax.swing.*;
import java.awt.*;
/**
* Default implementation for the TreeCellValueConverter interface.
* This converter returns the text displayed by JLabel components only - it will throw an
* exception if another renderer component is not used.
*/
public class DefaultTreeCellValue... | 213 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.ComponentUtils;
import org.uispec4j.utils.Utils;
import javax.swing.*;
import java.util.Dictionary;
import java.util.Enumeration;
import java.util.TreeMap;
/**
* Wrapp... | 1,126 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.ArrayUtils;
import org.uispec4j.utils.ColorUtils;
import org.uispec4j.utils.Utils;
import javax.accessibility.AccessibleComponent;
import javax.accessibility.AccessibleC... | 5,135 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.*;
/**
* Wrapper for JSpinner components implementing a SpinnerNumberModel.
*/
public class NumberSpinner extends Spinner {
private SpinnerNumberModel model;
public Num... | 323 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import javax.swing.text.JTextComponent;
class TextBoxHandlerForRawTextComponent extends AbstractTextBoxHandlerForTextComponent {
public TextBoxHandlerForRawTextComponent(JTextComponent textCom... | 258 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.finder.FinderUtils;
import org.uispec4j.finder.StringMatcher;
import org.uispec4j.utils.ArrayUtils;
import org.uispec4j.utils.ColorUtils;
import org.uispec4j.utils.ComponentCol... | 1,966 |
github-java-corpus | 2,012 | package org.uispec4j;
import java.awt.*;
/**
* Converter that returns the object managed by the underlying JTable's model. This is to be used sparingly since
* it can disclose the application's internals, and you probably want the tests to be as independent as possible
* from the implementation.
*/
public class M... | 118 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.ArrayUtils;
import org.uispec4j.utils.ColorUtils;
import org.uispec4j.utils.ComponentColorChecker;
import org.uispec4j.utils.Utils;
import javax.swing.*;
import javax.sw... | 8,392 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import java.awt.*;
/**
* Interface for all UI (user interface) components.
*/
public interface UIComponent {
/**
* Returns the Java GUI component represented by this object.
*/
Component getAwtComponent();
/**
* Returns an XML represen... | 314 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.assertion.Assertion;
import org.uispec4j.assertion.UISpecAssert;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.Utils;
import javax.swing.*;
/**
* Wrapper for Multiple Desktop Interface (MDI) widgets implemented as JDesktopPane compone... | 654 |
github-java-corpus | 2,012 | package org.uispec4j;
import org.uispec4j.interception.toolkit.UISpecToolkit;
import org.uispec4j.interception.ui.UISpecLF;
import java.awt.*;
import java.lang.reflect.Field;
/**
* Facade for the initialization of the library, mainly used for the interception mechanism.
*
* @see <a href="http://www.uispec4j.org/i... | 592 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
import java.awt.*;
public class UISpecFramePeer extends Empty.FramePeer {
private Frame frame;
public UISpecFramePeer(Frame frame) {
this.frame = frame;
}
public void show() {
UISpecDisplay.instance().showFrame(frame);
UISpecDisplay.instance().rethrowIf... | 95 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
import org.uispec4j.Window;
import org.uispec4j.interception.handlers.InterceptionHandler;
import org.uispec4j.utils.ComponentUtils;
import org.uispec4j.utils.ExceptionContainer;
import org.uispec4j.utils.ThreadManager;
import org.uispec4j.utils.Utils;
import javax.swing.*;
... | 782 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
/**
* Thrown when an internal error occured when UISpec mock the display.
*/
public class InterceptionInternalError extends Error {
public InterceptionInternalError(String msg) {
super(msg);
}
}
| 55 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
import org.uispec4j.Window;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
public class UISpecDialogPeer extends Empty.DialogPeer {
private JDialog dialog;
private boolean listenerRegistered;
pub... | 237 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
import java.awt.*;
public class UISpecWindowPeer extends Empty.WindowPeeer {
Window window;
public UISpecWindowPeer(Window window) {
this.window = window;
}
public void show() {
UISpecDisplay.instance().showWindow(window);
UISpecDisplay.instance().rethr... | 96 |
github-java-corpus | 2,012 | package org.uispec4j.interception.toolkit;
import org.uispec4j.UISpec4J;
import javax.swing.*;
import java.awt.*;
import java.awt.im.spi.InputMethodDescriptor;
import java.awt.peer.*;
/**
* Mock toolkit used for intercepting displayed frames and dialogs.<p>
* You can set it up by calling the {@link #setUp()} metho... | 918 |
github-java-corpus | 2,012 | package org.uispec4j.interception;
import org.uispec4j.Trigger;
import org.uispec4j.Window;
/**
* Interface used for defining modal dialog handlers.
*
* @see WindowInterceptor
* @see <a href="http://www.uispec4j.org/intercepting-windows">Intercepting windows</a>
*/
public abstract class WindowHandler {
private... | 220 |
github-java-corpus | 2,012 | package org.uispec4j.interception;
public class InterceptionError extends Error {
public InterceptionError(String message, Throwable cause) {
super(message, cause);
}
}
| 39 |
github-java-corpus | 2,012 | package org.uispec4j.interception;
import org.uispec4j.Trigger;
import org.uispec4j.Window;
import org.uispec4j.assertion.UISpecAssert;
import org.uispec4j.assertion.testlibrairies.AssertAdapter;
import org.uispec4j.utils.ComponentUtils;
import org.uispec4j.utils.Utils;
import javax.swing.*;
import java.awt.*;
import... | 1,673 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicScrollBarUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecScrollBarUI extends BasicScrollBarUI {
public static ComponentUI crea... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTreeUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTreeUI extends BasicTreeUI {
public static ComponentUI createUI(JComponent... | 164 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicButtonUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecButtonUI extends BasicButtonUI {
public static ComponentUI createUI(JCom... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicEditorPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecEditorPaneUI extends BasicEditorPaneUI {
public static ComponentUI c... | 203 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicToolBarSeparatorUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecToolBarSeparatorUI extends BasicToolBarSeparatorUI {
public st... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicSliderUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecSliderUI extends BasicSliderUI {
public static ComponentUI createUI(JCom... | 197 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicOptionPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecOptionPaneUI extends BasicOptionPaneUI {
public static ComponentUI c... | 215 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicToggleButtonUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecToggleButtonUI extends BasicToggleButtonUI {
public static Compone... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicScrollPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecScrollPaneUI extends BasicScrollPaneUI {
public static ComponentUI c... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTabbedPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTabbedPaneUI extends BasicTabbedPaneUI {
public static ComponentUI c... | 168 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicPanelUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecPanelUI extends BasicPanelUI {
public static ComponentUI createUI(JCompon... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicCheckBoxMenuItemUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecCheckBoxMenuItemUI extends BasicCheckBoxMenuItemUI {
public st... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicRadioButtonMenuItemUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecRadioButtonMenuItemUI extends BasicRadioButtonMenuItemUI {
... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicFormattedTextFieldUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecFormattedTextFieldUI extends BasicFormattedTextFieldUI {
pub... | 203 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicMenuUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecMenuUI extends BasicMenuUI {
public static ComponentUI createUI(JComponent... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTextUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTextUI extends BasicTextUI {
public static ComponentUI createUI(JComponent... | 162 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicPopupMenuUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecPopupMenuUI extends BasicPopupMenuUI {
public static ComponentUI crea... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import javax.swing.*;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;
public class UISpecLF {
public static void init() {
UIManager.put("ButtonUI", UISpecButtonUI.class.getName());
UIManager.put("CheckBoxMenuItemU... | 928 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicViewportUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecViewportUI extends BasicViewportUI {
public static ComponentUI createU... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicColorChooserUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecColorChooserUI extends BasicColorChooserUI {
public static Compone... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicPopupMenuSeparatorUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecPopupMenuSeparatorUI extends BasicPopupMenuSeparatorUI {
pub... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicMenuItemUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecMenuItemUI extends BasicMenuItemUI {
public static ComponentUI createU... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicInternalFrameUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecInternalFrameUI extends BasicInternalFrameUI {
public static Comp... | 204 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicDesktopIconUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecDesktopIconUI extends BasicDesktopIconUI {
public static ComponentU... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicListUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecListUI extends BasicListUI {
public static ComponentUI createUI(JComponent... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicSplitPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecSplitPaneUI extends BasicSplitPaneUI {
public static ComponentUI crea... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTextAreaUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTextAreaUI extends BasicTextAreaUI {
public static ComponentUI createU... | 199 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicCheckBoxUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecCheckBoxUI extends BasicCheckBoxUI {
public static ComponentUI createU... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicToolTipUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecToolTipUI extends BasicToolTipUI {
public static ComponentUI createUI(J... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicToolBarUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecToolBarUI extends BasicToolBarUI {
public static ComponentUI createUI(J... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicComboBoxUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecComboBoxUI extends BasicComboBoxUI {
public static ComponentUI createU... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicDesktopPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecDesktopPaneUI extends BasicDesktopPaneUI {
public static ComponentU... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicSeparatorUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecSeparatorUI extends BasicSeparatorUI {
public static ComponentUI crea... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicMenuBarUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecMenuBarUI extends BasicMenuBarUI {
public static ComponentUI createUI(J... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTableHeaderUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTableHeaderUI extends BasicTableHeaderUI {
public static ComponentU... | 179 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicLabelUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecLabelUI extends BasicLabelUI {
public static ComponentUI createUI(JCompon... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicTableUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecTableUI extends BasicTableUI {
public static ComponentUI createUI(JCompon... | 164 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicFileChooserUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecFileChooserUI extends BasicFileChooserUI {
public static ComponentU... | 197 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicProgressBarUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecProgressBarUI extends BasicProgressBarUI {
public static ComponentU... | 175 |
github-java-corpus | 2,012 | package org.uispec4j.interception.ui;
import org.uispec4j.interception.toolkit.Empty;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicRootPaneUI;
import java.awt.*;
///CLOVER:OFF
public class UISpecRootPaneUI extends BasicRootPaneUI {
public static ComponentUI createU... | 179 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.