Package gnu.testlet.javax.swing.JLabel

Source Code of gnu.testlet.javax.swing.JLabel.setHorizontalAlignment

/* setHorizontalAlignment.java -- some checks for the setHorizontalAlignment()
       method in the JLabel class.
   Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
This file is part of Mauve.

Mauve is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

Mauve is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with Mauve; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

*/

// Tags: JDK1.2

package gnu.testlet.javax.swing.JLabel;

import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;

import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.List;

import javax.swing.JLabel;

public class setHorizontalAlignment implements Testlet, PropertyChangeListener
{
  List events = new java.util.ArrayList();
 
  public void propertyChange(PropertyChangeEvent e)
  {
    events.add(e);
  }
 
  public void test(TestHarness harness)
  {
    JLabel label = new JLabel("ABC");
    harness.check(label.getHorizontalAlignment(), JLabel.LEADING);
    label.addPropertyChangeListener(this);
    label.setHorizontalAlignment(JLabel.RIGHT);
    harness.check(label.getHorizontalAlignment(), JLabel.RIGHT);
    harness.check(events.size(), 1);
    PropertyChangeEvent e0 = (PropertyChangeEvent) events.get(0);
    harness.check(e0.getSource(), label);
    harness.check(e0.getPropertyName(), "horizontalAlignment");
    harness.check(e0.getOldValue(), new Integer(JLabel.LEADING));
    harness.check(e0.getNewValue(), new Integer(JLabel.RIGHT));
   
    // try a bad value
    boolean pass = false;
    try
    {
      label.setHorizontalAlignment(99);
    }
    catch (IllegalArgumentException e)
    {
      pass = true;
    }
    harness.check(pass);
  }

}
TOP

Related Classes of gnu.testlet.javax.swing.JLabel.setHorizontalAlignment

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.