private int getMinOccurs()

in dv/src/main/java/org/apache/cxf/xjc/dv/DefaultValuePlugin.java [160:167]


    private int getMinOccurs(XSParticle particle) {
        try {
            Number o = (Number)particle.getClass().getMethod("getMinOccurs").invoke(particle);
            return o.intValue(); 
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }