input file for AnonInnerLength unit tests
This commit is contained in:
parent
99ed7a7d2c
commit
f97fc5cdc5
|
|
@ -0,0 +1,123 @@
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Test case file for checkstyle.
|
||||
// Created: 2002
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
package com.puppycrawl.tools.checkstyle;
|
||||
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import javax.swing.JButton;
|
||||
|
||||
/**
|
||||
* Tests for length of anonymous inner types
|
||||
* @author Rob Worth
|
||||
* @author Lars Kühne
|
||||
**/
|
||||
public class InputAnonInnerLength
|
||||
{
|
||||
/**
|
||||
* Check that instantiations of normal classes work OK.
|
||||
*/
|
||||
private JButton mButton = new JButton();
|
||||
|
||||
private class MyInner
|
||||
{
|
||||
private MyInner(int[] anArray)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* the AnonInnerLengthCheck works with 'new' and RCURLY - check that
|
||||
* it will not confuse constructors calls with array params with
|
||||
* anon inners.
|
||||
*/
|
||||
private MyInner myInner = new MyInner(new int[]{
|
||||
// make the array span multiple lines
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
anon inner in member variable initialization which is 21 lines long
|
||||
*/
|
||||
private Runnable mRunnable1 = new Runnable() {
|
||||
public void run() // should not have to be documented, class is anon.
|
||||
{
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
anon inner in member variable initialization which is 20 lines long
|
||||
*/
|
||||
private Runnable mRunnable2 = new Runnable() {
|
||||
public void run() // should not have to be documented, class is anon.
|
||||
{
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
System.out.println("running");
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
anon inner in constructor.
|
||||
*/
|
||||
InputAnonInnerLength()
|
||||
{
|
||||
mButton.addMouseListener( new MouseAdapter()
|
||||
{
|
||||
public void mouseClicked( MouseEvent aEv )
|
||||
{
|
||||
System.out.println("click");
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
/**
|
||||
anon inner in method
|
||||
*/
|
||||
public void addInputAnonInner()
|
||||
{
|
||||
mButton.addMouseListener( new MouseAdapter()
|
||||
{
|
||||
public void mouseClicked( MouseEvent aEv )
|
||||
{
|
||||
System.out.println("click");
|
||||
}
|
||||
} );
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue