Examples of JUndoableTextArea


Examples of com.eviware.soapui.support.components.JUndoableTextArea

  }

  private JPanel buildDescriptionPanel()
  {
    JPanel panel = new JPanel( new BorderLayout() );
    descriptionArea = new JUndoableTextArea( getModelItem().getDescription() );
    descriptionArea.getDocument().addDocumentListener( new DocumentListenerAdapter()
    {
      @Override
      public void update( Document document )
      {
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

    splitPane.setLeftComponent( p );

    JSplitPane innerSplit = UISupport.createVerticalSplit();
    innerSplit.setBorder( null );
    sourceArea = new JUndoableTextArea();
    sourceArea.setToolTipText( "XPath selection from source property" );
    sourceArea.setEnabled( false );
    sourceArea.getDocument().addDocumentListener( new SourceAreaDocumentListener() );
    componentEnabler.add( sourceArea );

    targetArea = new JUndoableTextArea();
    targetArea.setToolTipText( "XPath target in target property" );
    targetArea.setEnabled( false );
    targetArea.getDocument().addDocumentListener( new TargetAreaDocumentListener() );
    componentEnabler.add( targetArea );
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

  }

  private JPanel buildDescriptionPanel()
  {
    JPanel panel = new JPanel( new BorderLayout() );
    descriptionArea = new JUndoableTextArea( getModelItem().getDescription() );
    descriptionArea.getDocument().addDocumentListener( new DocumentListenerAdapter()
    {
      public void update( Document document )
      {
        getModelItem().setDescription( descriptionArea.getText() );
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

    defineColumnWidth();
    table.setDefaultEditor( String.class, getDefaultCellEditor() );

    add( new JScrollPane( table ), BorderLayout.CENTER );

    pathPane = new JUndoableTextArea();
    if( securityScan instanceof BoundarySecurityScan )
    {
      ( ( BoundarySecurityScan )securityScan ).refreshRestrictionLabel( -1 );
    }
    if( securityScan instanceof InvalidTypesSecurityScan )
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

        return new PropertyHolderTable(getModelItem());
    }

    protected JPanel buildDescriptionPanel() {
        JPanel panel = new JPanel(new BorderLayout());
        descriptionArea = new JUndoableTextArea(getModelItem().getDescription());
        descriptionArea.getDocument().addDocumentListener(new DocumentListenerAdapter() {
            @Override
            public void update(Document document) {
                getModelItem().setDescription(descriptionArea.getText());
            }
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

        return new PropertyHolderTable(getModelItem());
    }

    private JPanel buildDescriptionPanel() {
        JPanel panel = new JPanel(new BorderLayout());
        descriptionArea = new JUndoableTextArea(getModelItem().getDescription());
        descriptionArea.getDocument().addDocumentListener(new DocumentListenerAdapter() {
            public void update(Document document) {
                getModelItem().setDescription(descriptionArea.getText());
            }
        });
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

        return afterRequestGroovyEditor;
    }

    protected JPanel buildDescriptionPanel() {
        JPanel panel = new JPanel(new BorderLayout());
        descriptionArea = new JUndoableTextArea(getModelItem().getDescription());
        descriptionArea.getDocument().addDocumentListener(new DocumentListenerAdapter() {
            public void update(Document document) {
                ((AbstractMockService) getModelItem()).setDescription(descriptionArea.getText());
            }
        });
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

public class JTextAreaFormField extends AbstractSwingXFormField<JComponent> implements XFormTextField {
    private JScrollPane scrollPane;

    public JTextAreaFormField() {
        super(new JUndoableTextArea());

        scrollPane = new JScrollPane(super.getComponent());
    }
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

        JPanel pathPanel = new JPanel(new BorderLayout());
        JXToolBar pathToolbar = UISupport.createToolbar();
        addPathEditorActions(pathToolbar);

        pathArea = new JUndoableTextArea();
        pathArea.setToolTipText("Specifies the XQuery expression to select from the message for validation");

        pathPanel.add(pathToolbar, BorderLayout.NORTH);
        pathPanel.add(new JScrollPane(pathArea), BorderLayout.CENTER);

        splitPane.setTopComponent(UISupport.addTitledBorder(pathPanel, "XQuery Expression"));

        JPanel matchPanel = new JPanel(new BorderLayout());
        JXToolBar contentToolbar = UISupport.createToolbar();
        addMatchEditorActions(contentToolbar);

        contentArea = new JUndoableTextArea();
        contentArea.setToolTipText("Specifies the expected result of the XQuery expression");

        matchPanel.add(contentToolbar, BorderLayout.NORTH);
        matchPanel.add(new JScrollPane(contentArea), BorderLayout.CENTER);
View Full Code Here

Examples of com.eviware.soapui.support.components.JUndoableTextArea

        JPanel pathPanel = getPathAreaPanel();

        splitPane.setTopComponent(UISupport.addTitledBorder(pathPanel, assertion.getPathAreaBorderTitle()));

        contentArea = new JUndoableTextArea();
        contentArea.setToolTipText(assertion.getContentAreaToolTipText());

        JPanel matchPanel = new JPanel(new BorderLayout());
        JXToolBar contentToolbar = UISupport.createToolbar();
        assertion.addMatchEditorActions(contentToolbar);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.