Java JTextField isTextFieldModified(JTextField textField, String originalValue)

Here you can find the source of isTextFieldModified(JTextField textField, String originalValue)

Description

is Text Field Modified

License

Apache License

Declaration

public static boolean isTextFieldModified(JTextField textField, String originalValue) 

Method Source Code


//package com.java2s;
/*//from w  w  w. j a v a 2s . com
 * #%L
 * XMLBeans integration
 * %%
 * Copyright (C) 2013 - 2014 BSB S.A.
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import javax.swing.*;

public class Main {
    public static boolean isTextFieldModified(JTextField textField, String originalValue) {
        return (textField.getText() != null ? !textField.getText().equals(originalValue) : originalValue != null);
    }
}

Related

  1. isEmptyStr(javax.swing.JTextField input)
  2. isInHighlight(MouseEvent e, JTextField label, Highlighter h)
  3. isJTextFieldNotEmpty(javax.swing.JTextField field)
  4. isTelpValid(JTextField field)
  5. IsTextFieldEmpty(javax.swing.JTextField tf)
  6. newIntegerValue(JTextField text, int oldValue)
  7. onTextFieldChange(JTextField field, final Runnable task)
  8. parseTextFieldInteger(JTextField field)
  9. ponerMayuscula(KeyEvent e, JTextField textField)