private int getMaxOccurs()

in dv/src/main/java/org/apache/cxf/xjc/dv/DefaultValuePlugin.java [168:175]


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