Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 79a668cb166e657e6e20378f68336ef9cf532221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<md:MetaData 
		xmlns:md="http://www.org.osgi/xmlns/metatype/v1.0.0/md" 
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
		xsi:schemaLocation="http://www.org.osgi/xmlns/metatype/v1.0.0/md metatype.xsd">
	<OCD id="getMinMax" name="getMinMax">
		<AD id="getMax" type="Integer" max="0"/>
		<AD id="getMaxNull" type="Integer" min="0"/>
		<AD id="getMin" type="Integer" min="5"/>
		<AD id="getMinNull" type="Integer" max="25"/>
		<AD id="getMaxAsNotANumber" type="String" max="1.0.0"/>
		<AD id="getMinAsNotANumber" type="String" min="foo"/>
		<AD id="minMaxValidUsingInt" type="Password" min="8" max="16"/>
		<AD id="minMaxValidUsingString" type="String" min="1" max="1.2"/>
		<AD id="getDouble" type="Double" min="1" max="100"/>
		<AD id="getFloat" type="Float" min="1" max="100"/>
		<AD id="getByte" type="Byte" min="1" max="2"/>
		<AD id="getShort" type="Short" min="1" max="2"/>
		<AD id="getCharacter" type="Character" min="a" max="z"/>
		<AD id="getBoolean" type="Boolean" min="false" max="true"/>
		<AD id="getLong" type="Long" min="1" max="1000"/>
		<AD id="getBigInteger" type="BigInteger" min="1" max="1000"/>
		<AD id="getBigDecimal" type="BigDecimal" min="1.1" max="1000.1"/>
	</OCD>
	<Designate pid="org.eclipse.equinox.metatype.tests.getMinMax.tb1">
		<Object ocdref="getMinMax"/>
	</Designate>
</md:MetaData>

Back to the top