Adjusting testing cases for current state of OCCT
[occt.git] / samples / java / java / CASCADESamplesJni / Aspect_ColorMap.java
CommitLineData
7fd59977 1// Java Native Class from Cas.Cade
2// Copyright (C) 1991,1999 by
3//
4// MATRA DATAVISION, FRANCE
5//
6// This software is furnished in accordance with the terms and conditions
7// of the contract and with the inclusion of the above copyright notice.
8// This software or any other copy thereof may not be provided or otherwise
9// be made available to any other person. No title to an ownership of the
10// software is hereby transferred.
11//
12// At the termination of the contract, the software and all copies of this
13// software must be deleted.
14//
15
16
17package CASCADESamplesJni;
18
19import jcas.Object;
20import CASCADESamplesJni.Aspect_TypeOfColorMap;
21import jcas.Standard_Integer;
22import CASCADESamplesJni.Aspect_ColorMapEntry;
23import CASCADESamplesJni.Quantity_Color;
24
25
26public class Aspect_ColorMap extends CASCADESamplesJni.MMgt_TShared {
27
28 static {
29 System.loadLibrary("CASCADESamplesJni");
30 }
31
32native public final short Type();
33native public final int Size();
34native public final int Index(int aColormapIndex);
35native public final void Dump();
36native public final Aspect_ColorMapEntry Entry(int AColorMapIndex);
37native public int FindColorMapIndex(int AColorMapEntryIndex);
38native public Aspect_ColorMapEntry FindEntry(int AColorMapEntryIndex);
39native public int NearestColorMapIndex(Quantity_Color aColor);
40native public Aspect_ColorMapEntry NearestEntry(Quantity_Color aColor);
41public Aspect_ColorMap() {
42}
43
44
45
46
47}