当前位置: 首页>>代码示例>>Java>>正文


Java CategoryLineAnnotation类代码示例

本文整理汇总了Java中org.jfree.chart.annotations.CategoryLineAnnotation的典型用法代码示例。如果您正苦于以下问题:Java CategoryLineAnnotation类的具体用法?Java CategoryLineAnnotation怎么用?Java CategoryLineAnnotation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CategoryLineAnnotation类属于org.jfree.chart.annotations包,在下文中一共展示了CategoryLineAnnotation类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testHashcode

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Two objects that are equal are required to return the same hashCode. 
 */
public void testHashcode() {
    CategoryLineAnnotation a1 = new CategoryLineAnnotation(
        "Category 1", 1.0, "Category 2", 2.0, Color.red, 
        new BasicStroke(1.0f));
    CategoryLineAnnotation a2 = new CategoryLineAnnotation(
        "Category 1", 1.0, "Category 2", 2.0, Color.red, 
        new BasicStroke(1.0f));
    assertTrue(a1.equals(a2));
    int h1 = a1.hashCode();
    int h2 = a2.hashCode();
    assertEquals(h1, h2);
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:16,代码来源:CategoryLineAnnotationTests.java

示例2: testHashcode

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Two objects that are equal are required to return the same hashCode.
 */
public void testHashcode() {
    CategoryLineAnnotation a1 = new CategoryLineAnnotation("Category 1",
            1.0, "Category 2", 2.0, Color.red, new BasicStroke(1.0f));
    CategoryLineAnnotation a2 = new CategoryLineAnnotation("Category 1",
            1.0, "Category 2", 2.0, Color.red, new BasicStroke(1.0f));
    assertTrue(a1.equals(a2));
    int h1 = a1.hashCode();
    int h2 = a2.hashCode();
    assertEquals(h1, h2);
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:14,代码来源:CategoryLineAnnotationTests.java

示例3: testPublicCloneable

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Checks that this class implements PublicCloneable.
 */
public void testPublicCloneable() {
    CategoryLineAnnotation a1 = new CategoryLineAnnotation(
            "Category 1", 1.0, "Category 2", 2.0, Color.red,
            new BasicStroke(1.0f));
    assertTrue(a1 instanceof PublicCloneable);
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:10,代码来源:CategoryLineAnnotationTests.java

示例4: testEquals

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that the equals method can distinguish all the required fields.
 */
public void testEquals() {
    
    BasicStroke s1 = new BasicStroke(1.0f);
    BasicStroke s2 = new BasicStroke(2.0f);
    CategoryLineAnnotation a1 = new CategoryLineAnnotation(
        "Category 1", 1.0, "Category 2", 2.0, Color.red, s1);
    CategoryLineAnnotation a2 = new CategoryLineAnnotation(
        "Category 1", 1.0, "Category 2", 2.0, Color.red, s1);
    assertTrue(a1.equals(a2));
    assertTrue(a2.equals(a1));
    
    // category 1 
    a1.setCategory1("Category A");
    assertFalse(a1.equals(a2));
    a2.setCategory1("Category A");
    assertTrue(a1.equals(a2));

    // value 1
    a1.setValue1(0.15);
    assertFalse(a1.equals(a2));
    a2.setValue1(0.15);
    assertTrue(a1.equals(a2));
  
    // category 2 
    a1.setCategory2("Category B");
    assertFalse(a1.equals(a2));
    a2.setCategory2("Category B");
    assertTrue(a1.equals(a2));

    // value 2
    a1.setValue2(0.25);
    assertFalse(a1.equals(a2));
    a2.setValue2(0.25);
    assertTrue(a1.equals(a2));
    
    // paint
    a1.setPaint(Color.yellow);
    assertFalse(a1.equals(a2));
    a2.setPaint(Color.yellow);
    assertTrue(a1.equals(a2));
    
    // stroke
    a1.setStroke(s2);
    assertFalse(a1.equals(a2));
    a2.setStroke(s2);
    assertTrue(a1.equals(a2));
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:51,代码来源:CategoryLineAnnotationTests.java

示例5: testCloning

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that cloning works.
 */
@Test
public void testCloning() {
    CategoryPlot p1 = new CategoryPlot();
    p1.setRangeCrosshairPaint(new GradientPaint(1.0f, 2.0f, Color.white,
            3.0f, 4.0f, Color.yellow));
    p1.setRangeMinorGridlinePaint(new GradientPaint(2.0f, 3.0f, Color.white,
            4.0f, 5.0f, Color.red));
    p1.setRangeZeroBaselinePaint(new GradientPaint(3.0f, 4.0f, Color.red,
            5.0f, 6.0f, Color.white));
    CategoryPlot p2;
    try {
        p2 = (CategoryPlot) p1.clone();
    }
    catch (CloneNotSupportedException e) {
        fail("Cloning failed.");
        return;
    }
    assertTrue(p1 != p2);
    assertTrue(p1.getClass() == p2.getClass());
    assertTrue(p1.equals(p2));

    // check independence
    p1.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertFalse(p1.equals(p2));
    p2.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:53,代码来源:CategoryPlotTest.java

示例6: testCloning

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that cloning works.
 */
@Test
public void testCloning() {
    CategoryPlot p1 = new CategoryPlot();
    p1.setRangeCrosshairPaint(new GradientPaint(1.0f, 2.0f, Color.WHITE,
            3.0f, 4.0f, Color.YELLOW));
    p1.setRangeMinorGridlinePaint(new GradientPaint(2.0f, 3.0f, Color.WHITE,
            4.0f, 5.0f, Color.RED));
    p1.setRangeZeroBaselinePaint(new GradientPaint(3.0f, 4.0f, Color.RED,
            5.0f, 6.0f, Color.WHITE));
    CategoryPlot p2;
    try {
        p2 = (CategoryPlot) p1.clone();
    }
    catch (CloneNotSupportedException e) {
        fail("Cloning failed.");
        return;
    }
    assertTrue(p1 != p2);
    assertTrue(p1.getClass() == p2.getClass());
    assertTrue(p1.equals(p2));

    // check independence
    p1.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.RED, new BasicStroke(1.0f)));
    assertFalse(p1.equals(p2));
    p2.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.RED, new BasicStroke(1.0f)));
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));
}
 
开发者ID:jfree,项目名称:jfreechart,代码行数:53,代码来源:CategoryPlotTest.java

示例7: testCloning

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that cloning works.
 */
public void testCloning() {
    CategoryPlot p1 = new CategoryPlot();
    p1.setRangeCrosshairPaint(new GradientPaint(1.0f, 2.0f, Color.white,
            3.0f, 4.0f, Color.yellow));
    p1.setRangeMinorGridlinePaint(new GradientPaint(2.0f, 3.0f, Color.white,
            4.0f, 5.0f, Color.red));
    p1.setRangeZeroBaselinePaint(new GradientPaint(3.0f, 4.0f, Color.red,
            5.0f, 6.0f, Color.white));
    CategoryPlot p2 = null;
    try {
        p2 = (CategoryPlot) p1.clone();
    }
    catch (CloneNotSupportedException e) {
        e.printStackTrace();
        System.err.println("Failed to clone.");
    }
    assertTrue(p1 != p2);
    assertTrue(p1.getClass() == p2.getClass());
    assertTrue(p1.equals(p2));

    // check independence
    p1.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertFalse(p1.equals(p2));
    p2.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:52,代码来源:CategoryPlotTests.java

示例8: testEquals

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that the equals method can distinguish all the required fields.
 */
public void testEquals() {

    BasicStroke s1 = new BasicStroke(1.0f);
    BasicStroke s2 = new BasicStroke(2.0f);
    CategoryLineAnnotation a1 = new CategoryLineAnnotation("Category 1",
            1.0, "Category 2", 2.0, Color.red, s1);
    CategoryLineAnnotation a2 = new CategoryLineAnnotation("Category 1",
            1.0, "Category 2", 2.0, Color.red, s1);
    assertTrue(a1.equals(a2));
    assertTrue(a2.equals(a1));

    // category 1
    a1.setCategory1("Category A");
    assertFalse(a1.equals(a2));
    a2.setCategory1("Category A");
    assertTrue(a1.equals(a2));

    // value 1
    a1.setValue1(0.15);
    assertFalse(a1.equals(a2));
    a2.setValue1(0.15);
    assertTrue(a1.equals(a2));

    // category 2
    a1.setCategory2("Category B");
    assertFalse(a1.equals(a2));
    a2.setCategory2("Category B");
    assertTrue(a1.equals(a2));

    // value 2
    a1.setValue2(0.25);
    assertFalse(a1.equals(a2));
    a2.setValue2(0.25);
    assertTrue(a1.equals(a2));

    // paint
    a1.setPaint(Color.yellow);
    assertFalse(a1.equals(a2));
    a2.setPaint(Color.yellow);
    assertTrue(a1.equals(a2));

    // stroke
    a1.setStroke(s2);
    assertFalse(a1.equals(a2));
    a2.setStroke(s2);
    assertTrue(a1.equals(a2));
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:51,代码来源:CategoryLineAnnotationTests.java

示例9: testCloning

import org.jfree.chart.annotations.CategoryLineAnnotation; //导入依赖的package包/类
/**
 * Confirm that cloning works.
 */
@Test
public void testCloning() {
    CategoryPlot p1 = new CategoryPlot();
    p1.setRangeCrosshairPaint(new GradientPaint(1.0f, 2.0f, Color.white,
            3.0f, 4.0f, Color.yellow));
    p1.setRangeMinorGridlinePaint(new GradientPaint(2.0f, 3.0f, Color.white,
            4.0f, 5.0f, Color.red));
    p1.setRangeZeroBaselinePaint(new GradientPaint(3.0f, 4.0f, Color.red,
            5.0f, 6.0f, Color.white));
    CategoryPlot p2 = null;
    try {
        p2 = (CategoryPlot) p1.clone();
    }
    catch (CloneNotSupportedException e) {
        fail("Cloning failed.");
        return;
    }
    assertTrue(p1 != p2);
    assertTrue(p1.getClass() == p2.getClass());
    assertTrue(p1.equals(p2));

    // check independence
    p1.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertFalse(p1.equals(p2));
    p2.addAnnotation(new CategoryLineAnnotation("C1", 1.0, "C2", 2.0,
            Color.red, new BasicStroke(1.0f)));
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C1"), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addDomainMarker(new CategoryMarker("C2"), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(1.0), Layer.FOREGROUND);
    assertTrue(p1.equals(p2));

    p1.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertFalse(p1.equals(p2));
    p2.addRangeMarker(new ValueMarker(2.0), Layer.BACKGROUND);
    assertTrue(p1.equals(p2));
}
 
开发者ID:pablopatarca,项目名称:proyecto-teoria-control-utn-frro,代码行数:53,代码来源:CategoryPlotTest.java


注:本文中的org.jfree.chart.annotations.CategoryLineAnnotation类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。