📄 gles_max_clip_planes_index.java
字号:
/**
* GLES_MAX_CLIP_PLANES_index.java
*
* This file was generated by XMLSpy 2007sp2 Enterprise Edition.
*
* YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
* OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
*
* Refer to the XMLSpy Documentation for further details.
* http://www.altova.com/xmlspy
*/
package com.jmex.model.collada.schema;
import com.jmex.xml.types.SchemaInteger;
public class GLES_MAX_CLIP_PLANES_index extends SchemaInteger {
public GLES_MAX_CLIP_PLANES_index() {
super();
}
public GLES_MAX_CLIP_PLANES_index(String newValue) {
super(newValue);
validate();
}
public GLES_MAX_CLIP_PLANES_index(SchemaInteger newValue) {
super(newValue);
validate();
}
public void validate() {
if (compareTo(getMaxExclusive()) >= 0)
throw new com.jmex.xml.xml.XmlException("Value of GLES_MAX_CLIP_PLANES_index is out of range.");
if (compareTo(getMinInclusive()) < 0)
throw new com.jmex.xml.xml.XmlException("Value of GLES_MAX_CLIP_PLANES_index is out of range.");
}
public SchemaInteger getMaxExclusive() {
return new SchemaInteger("5");
}
public SchemaInteger getMinInclusive() {
return new SchemaInteger("0");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -