com.esri.arcgis.cartoUI
Class DataGraphTGeneralProperties

java.lang.Object
  extended by com.esri.arcgis.cartoUI.DataGraphTGeneralProperties
All Implemented Interfaces:
IDataGraphTGeneralProperties, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class DataGraphTGeneralProperties
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IDataGraphTGeneralProperties

A container for the display and manipulation of graph general properties.

Product Availability

Available with ArcGIS Desktop.

See Also:
Serialized Form

Constructor Summary
DataGraphTGeneralProperties(Object obj)
          Construct a DataGraphTGeneralProperties using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 String getFooter()
          Footer of the graph.
 String getSubTitle()
          Subtitle of the graph.
 String getTitle()
          Title of the graph.
 int hashCode()
          the hashcode for this object
 boolean isShow3D()
          Indicates if graph is rendered in 3-D.
 void setFooter(String footer)
          Footer of the graph.
 void setShow3D(boolean b)
          Indicates if graph is rendered in 3-D.
 void setSubTitle(String subTitle)
          Subtitle of the graph.
 void setTitle(String title)
          Title of the graph.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

DataGraphTGeneralProperties

public DataGraphTGeneralProperties(Object obj)
                            throws IOException
Construct a DataGraphTGeneralProperties using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to DataGraphTGeneralProperties.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
DataGraphTGeneralProperties o = (DataGraphTGeneralProperties)obj; // will not work

DataGraphTGeneralProperties o = new DataGraphTGeneralProperties(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
IOException - if there are interop problems DataGraphTGeneralProperties theDataGraphTGeneralProperties = (DataGraphTGeneralProperties) obj;
Method Detail

equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getTitle

public String getTitle()
                throws IOException,
                       AutomationException
Title of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getTitle in interface IDataGraphTGeneralProperties
Returns:
The title
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setTitle

public void setTitle(String title)
              throws IOException,
                     AutomationException
Title of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setTitle in interface IDataGraphTGeneralProperties
Parameters:
title - The title (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSubTitle

public String getSubTitle()
                   throws IOException,
                          AutomationException
Subtitle of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getSubTitle in interface IDataGraphTGeneralProperties
Returns:
The subTitle
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setSubTitle

public void setSubTitle(String subTitle)
                 throws IOException,
                        AutomationException
Subtitle of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setSubTitle in interface IDataGraphTGeneralProperties
Parameters:
subTitle - The subTitle (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFooter

public String getFooter()
                 throws IOException,
                        AutomationException
Footer of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getFooter in interface IDataGraphTGeneralProperties
Returns:
The footer
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFooter

public void setFooter(String footer)
               throws IOException,
                      AutomationException
Footer of the graph.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setFooter in interface IDataGraphTGeneralProperties
Parameters:
footer - The footer (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isShow3D

public boolean isShow3D()
                 throws IOException,
                        AutomationException
Indicates if graph is rendered in 3-D.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
isShow3D in interface IDataGraphTGeneralProperties
Returns:
The b
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setShow3D

public void setShow3D(boolean b)
               throws IOException,
                      AutomationException
Indicates if graph is rendered in 3-D.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setShow3D in interface IDataGraphTGeneralProperties
Parameters:
b - The b (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.