Library | Package Java Toolkit

Class Envelope2D

package com.ptc.pfc.pfcBase;

public class Envelope2D
  implements jxobject



Description

This array interface contains 2 Outline2D objects.

Array provides methods for accessing its elemnts by index(indices) and for modifying its elements. Array object "does not know" its dimentions.

Array Dimensions: [2]



Method Summary
static Envelope2Dcreate ()
    Creates new array object with uninitialized elements.
Outline2Dget (int idx0)
    Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
voidset (int idx0, Outline2D value)
    Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.

Method Detail

get

Outline2Dget (int idx0)


    Gets an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
Returns:
Element value.


set

voidset (int idx0, Outline2D value)


    Assignes a new value to an array element with the specified index(indices). If an index is out of range throws exception cipXInvalidArrayIndex.
Parameters:
idx0
First element index.
value
New element value.
Returns:


create

static Envelope2Dcreate ()


    Creates new array object with uninitialized elements.
Returns:
Created array.