📄 cg_fixed1.java
字号:
/**
* cg_fixed1.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.SchemaFloat;
public class cg_fixed1 extends SchemaFloat {
public cg_fixed1() {
super();
}
public cg_fixed1(String newValue) {
super(newValue);
validate();
}
public cg_fixed1(SchemaFloat newValue) {
super(newValue);
validate();
}
public void validate() {
if (compareTo(getMaxInclusive()) > 0)
throw new com.jmex.xml.xml.XmlException("Value of cg_fixed1 is out of range.");
if (compareTo(getMinInclusive()) < 0)
throw new com.jmex.xml.xml.XmlException("Value of cg_fixed1 is out of range.");
}
public SchemaFloat getMaxInclusive() {
return new SchemaFloat("2.0");
}
public SchemaFloat getMinInclusive() {
return new SchemaFloat("-2.0");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -