Package edu.harvard.hul.ois.ots.schemas.MIX

Examples of edu.harvard.hul.ois.ots.schemas.MIX.BitsPerSample


   
    protected void setBitsPerSample (int intBPS) {
        // I assume there's only a single value provided, and that it's an integer.
        // MIX allows for a different value for each component.
        try {
            BitsPerSample bps = new BitsPerSample ();
            bps.setBitsPerSampleUnit ("integer");
            bps.addBitsPerSampleValue(intBPS);
            ice.setBitsPerSample (bps);
        }
        catch (XmlContentException e) {
        }
    }
View Full Code Here

TOP

Related Classes of edu.harvard.hul.ois.ots.schemas.MIX.BitsPerSample

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.