Java Code Examples for org.jfree.chart.StrokeMap#put()

The following examples show how to use org.jfree.chart.StrokeMap#put() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StrokeMapTests.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some checks for the getStroke() method.
 */
public void testGetStroke() {
    StrokeMap m1 = new StrokeMap();
    assertEquals(null, m1.getStroke("A"));
    m1.put("A", new BasicStroke(1.1f));
    assertEquals(new BasicStroke(1.1f), m1.getStroke("A"));
    m1.put("A", null);
    assertEquals(null, m1.getStroke("A"));
    
    // a null key should throw an IllegalArgumentException
    boolean pass = false;
    try {
        m1.getStroke(null);
    }
    catch (IllegalArgumentException e) {
        pass = true;
    }
    assertTrue(pass);
}
 
Example 2
Source File: StrokeMapTests.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some checks for the put() method.
 */
public void testPut() {
    StrokeMap m1 = new StrokeMap();
    m1.put("A", new BasicStroke(1.1f));
    assertEquals(new BasicStroke(1.1f), m1.getStroke("A"));
    
    // a null key should throw an IllegalArgumentException
    boolean pass = false;
    try {
        m1.put(null, new BasicStroke(1.1f));
    }
    catch (IllegalArgumentException e) {
        pass = true;
    }
    assertTrue(pass);
}
 
Example 3
Source File: StrokeMapTests.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Some checks for the equals() method.
 */
public void testEquals() {
    StrokeMap m1 = new StrokeMap();
    StrokeMap m2 = new StrokeMap();
    assertTrue(m1.equals(m1));
    assertTrue(m1.equals(m2));
    assertFalse(m1.equals(null));
    assertFalse(m1.equals("ABC"));
    
    m1.put("K1", new BasicStroke(1.1f));
    assertFalse(m1.equals(m2));
    m2.put("K1", new BasicStroke(1.1f));
    assertTrue(m1.equals(m2));
    
    m1.put("K2", new BasicStroke(2.2f));
    assertFalse(m1.equals(m2));
    m2.put("K2", new BasicStroke(2.2f));
    assertTrue(m1.equals(m2));
    
    m1.put("K2", null);
    assertFalse(m1.equals(m2));
    m2.put("K2", null);
    assertTrue(m1.equals(m2));
}