Code Search for Developers
 
 
  

ChartChoiceDefinitionImpl.java from BIRT at Krugle


Show ChartChoiceDefinitionImpl.java syntax highlighted

/***********************************************************************
 * Copyright (c) 2004 Actuate Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Actuate Corporation - initial API and implementation
 ***********************************************************************/
package org.eclipse.birt.chart.reportitem;

import org.eclipse.birt.report.model.api.extension.ChoiceDefinition;

/**
 *  
 */
public final class ChartChoiceDefinitionImpl extends ChoiceDefinition
{
    /**
     *  
     */
    private final String sDisplayNameID;

    /**
     *  
     */
    private final String sName;

    /**
     *  
     */
    private final Object oValue;

    /**
     * 
     * @param sDisplayNameID
     * @param sName
     * @param oValue
     */
    ChartChoiceDefinitionImpl(String sDisplayNameID, String sName, Object oValue)
    {
        this.sDisplayNameID = sDisplayNameID;
        this.sName = sName;
        this.oValue = oValue;
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.birt.report.model.extension.IChoiceDefinition#getDisplayNameID()
     */
    public String getDisplayNameID()
    {
        return sDisplayNameID;
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.birt.report.model.extension.IChoiceDefinition#getName()
     */
    public String getName()
    {
        return sName;
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.birt.report.model.extension.IChoiceDefinition#getValue()
     */
    public Object getValue()
    {
        return oValue;
    }

}



See more files for this project here

BIRT

BIRT is an open source, Eclipse-based reporting system that integrates with your application to produce compelling reports for both web and PDF.

Project homepage: http://www.eclipse.org/birt/phoenix/
Programming language(s): Java,XML
License: gpl2

  i18n/
    Messages.java
    nls.properties
  plugin/
    ChartReportItemPlugin.java
  ui/
    widget/
  BIRTActionEvaluator.java
  BIRTActionRenderer.java
  BIRTDataRowEvaluator.java
  BIRTExternalContext.java
  BIRTMessageLookup.java
  BIRTScriptClassLoader.java
  ChartChoiceDefinitionImpl.java
  ChartElementCommandImpl.java
  ChartPropertyDefinitionImpl.java
  ChartReportItemFactoryImpl.java
  ChartReportItemGenerationImpl.java
  ChartReportItemImpl.java
  ChartReportItemPresentationImpl.java
  ChartReportItemQueryImpl.java
  ChartReportStyleProcessor.java
  ChartSimplePropertyCommandImpl.java
  CompatibleExpressionUpdater.java
  QueryHelper.java