当前位置: 首页>>代码示例>>Java>>正文


Java Sides.ONE_SIDED属性代码示例

本文整理汇总了Java中javax.print.attribute.standard.Sides.ONE_SIDED属性的典型用法代码示例。如果您正苦于以下问题:Java Sides.ONE_SIDED属性的具体用法?Java Sides.ONE_SIDED怎么用?Java Sides.ONE_SIDED使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.print.attribute.standard.Sides的用法示例。


在下文中一共展示了Sides.ONE_SIDED属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: assignSides

public Sides assignSides(String sidesString) {
    Sides answer;

    if (sidesString == null) {
        // default to one side if no slides configured
        answer = Sides.ONE_SIDED;
    } else if (sidesString.equalsIgnoreCase("one-sided")) {
        answer = Sides.ONE_SIDED;
    } else if (sidesString.equalsIgnoreCase("duplex")) {
        answer = Sides.DUPLEX;
    } else if (sidesString.equalsIgnoreCase("tumble")) {
        answer = Sides.TUMBLE;
    } else if (sidesString.equalsIgnoreCase("two-sided-short-edge")) {
        answer = Sides.TWO_SIDED_SHORT_EDGE;
    } else if (sidesString.equalsIgnoreCase("two-sided-long-edge")) {
        answer = Sides.TWO_SIDED_LONG_EDGE;
    } else {
        answer = Sides.ONE_SIDED;
    }

    return answer;
}
 
开发者ID:HydAu,项目名称:Camel,代码行数:22,代码来源:PrinterConfiguration.java

示例2: getSides

public Sides getSides() {
    switch (getDmDuplex(structPtr)) {
    case DMDUP_VERTICAL:
        return Sides.TWO_SIDED_LONG_EDGE;
    case DMDUP_HORIZONTAL:
        return Sides.TWO_SIDED_SHORT_EDGE;
    default:
        return Sides.ONE_SIDED;
    }
}
 
开发者ID:shannah,项目名称:cn1,代码行数:10,代码来源:DevmodeStructWrapper.java

示例3: selectSidesButton

private void selectSidesButton(Sides par) {
    if (par == null) {
        par = Sides.ONE_SIDED;
    } 
    if (par.equals(Sides.TUMBLE) 
            || par.equals(Sides.TWO_SIDED_SHORT_EDGE)) {
        tumbleBtn.setSelected(true);
    } else if (par.equals(Sides.DUPLEX)  
            || par.equals(Sides.TWO_SIDED_LONG_EDGE)) {
        duplexBtn.setSelected(true);
    } else {
        oneSideBtn.setSelected(true);
    }
}
 
开发者ID:shannah,项目名称:cn1,代码行数:14,代码来源:ServiceUIDialog.java

示例4: getSelectedSide

private Sides getSelectedSide() {
    if (oneSideBtn.isSelected()) {
        return Sides.ONE_SIDED;
    } else if (duplexBtn.isSelected()) {
        return Sides.DUPLEX;
    } else if (tumbleBtn.isSelected()) {
        return Sides.TUMBLE;
    } else {
        return null;
    }
}
 
开发者ID:shannah,项目名称:cn1,代码行数:11,代码来源:ServiceUIDialog.java

示例5: setNativeAttributes

private final void setNativeAttributes(int flags, int fields, int values) {
    if (attributes == null) {
        return;
    }
    if ((flags & PD_PRINTTOFILE) != 0) {
        Destination destPrn = (Destination)attributes.get(
                                             Destination.class);
        if (destPrn == null) {
            try {
                attributes.add(new Destination(
                                           new File("./out.prn").toURI()));
            } catch (SecurityException se) {
                try {
                    attributes.add(new Destination(
                                            new URI("file:out.prn")));
                } catch (URISyntaxException e) {
                }
            }
        }
    } else {
        attributes.remove(Destination.class);
    }

    if ((flags & PD_COLLATE) != 0) {
        setCollateAttrib(SheetCollate.COLLATED, attributes);
    } else {
        setCollateAttrib(SheetCollate.UNCOLLATED, attributes);
    }

    if ((flags & PD_PAGENUMS) != 0) {
        attributes.add(SunPageSelection.RANGE);
    } else if ((flags & PD_SELECTION) != 0) {
        attributes.add(SunPageSelection.SELECTION);
    } else {
        attributes.add(SunPageSelection.ALL);
    }

    if ((fields & DM_ORIENTATION) != 0) {
        if ((values & SET_ORIENTATION) != 0) {
            setOrientAttrib(OrientationRequested.LANDSCAPE, attributes);
        } else {
            setOrientAttrib(OrientationRequested.PORTRAIT, attributes);
        }
    }

    if ((fields & DM_COLOR) != 0) {
        if ((values & SET_COLOR) != 0) {
            setColorAttrib(Chromaticity.COLOR, attributes);
        } else {
            setColorAttrib(Chromaticity.MONOCHROME, attributes);
        }
    }

    if ((fields & DM_PRINTQUALITY) != 0) {
        PrintQuality quality;
        if ((values & SET_RES_LOW) != 0) {
            quality = PrintQuality.DRAFT;
        } else if ((fields & SET_RES_HIGH) != 0) {
            quality = PrintQuality.HIGH;
        } else {
            quality = PrintQuality.NORMAL;
        }
        setQualityAttrib(quality, attributes);
    }

    if ((fields & DM_DUPLEX) != 0) {
        Sides sides;
        if ((values & SET_DUP_VERTICAL) != 0) {
            sides = Sides.TWO_SIDED_LONG_EDGE;
        } else if ((values & SET_DUP_HORIZONTAL) != 0) {
            sides = Sides.TWO_SIDED_SHORT_EDGE;
        } else {
            sides = Sides.ONE_SIDED;
        }
        setSidesAttrib(sides, attributes);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:77,代码来源:WPrinterJob.java

示例6: setNativeAttributes

private void setNativeAttributes(int flags, int fields, int values) {
    if (attributes == null) {
        return;
    }
    if ((flags & PD_PRINTTOFILE) != 0) {
        Destination destPrn = (Destination)attributes.get(
                                             Destination.class);
        if (destPrn == null) {
            try {
                attributes.add(new Destination(
                                           new File("./out.prn").toURI()));
            } catch (SecurityException se) {
                try {
                    attributes.add(new Destination(
                                            new URI("file:out.prn")));
                } catch (URISyntaxException e) {
                }
            }
        }
    } else {
        attributes.remove(Destination.class);
    }

    if ((flags & PD_COLLATE) != 0) {
        setCollateAttrib(SheetCollate.COLLATED, attributes);
    } else {
        setCollateAttrib(SheetCollate.UNCOLLATED, attributes);
    }

    if ((flags & PD_NOSELECTION) != PD_NOSELECTION) {
        if ((flags & PD_PAGENUMS) != 0) {
            attributes.add(SunPageSelection.RANGE);
        } else if ((flags & PD_SELECTION) != 0) {
            attributes.add(SunPageSelection.SELECTION);
        } else {
            attributes.add(SunPageSelection.ALL);
        }
    }

    if ((fields & DM_ORIENTATION) != 0) {
        if ((values & SET_ORIENTATION) != 0) {
            setOrientAttrib(OrientationRequested.LANDSCAPE, attributes);
        } else {
            setOrientAttrib(OrientationRequested.PORTRAIT, attributes);
        }
    }

    if ((fields & DM_COLOR) != 0) {
        if ((values & SET_COLOR) != 0) {
            setColorAttrib(Chromaticity.COLOR, attributes);
        } else {
            setColorAttrib(Chromaticity.MONOCHROME, attributes);
        }
    }

    if ((fields & DM_PRINTQUALITY) != 0) {
        PrintQuality quality;
        if ((values & SET_RES_LOW) != 0) {
            quality = PrintQuality.DRAFT;
        } else if ((fields & SET_RES_HIGH) != 0) {
            quality = PrintQuality.HIGH;
        } else {
            quality = PrintQuality.NORMAL;
        }
        setQualityAttrib(quality, attributes);
    }

    if ((fields & DM_DUPLEX) != 0) {
        Sides sides;
        if ((values & SET_DUP_VERTICAL) != 0) {
            sides = Sides.TWO_SIDED_LONG_EDGE;
        } else if ((values & SET_DUP_HORIZONTAL) != 0) {
            sides = Sides.TWO_SIDED_SHORT_EDGE;
        } else {
            sides = Sides.ONE_SIDED;
        }
        setSidesAttrib(sides, attributes);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:79,代码来源:WPrinterJob.java

示例7: setNativeAttributes

private void setNativeAttributes(int flags, int fields, int values) {
    if (attributes == null) {
        return;
    }
    if ((flags & PD_PRINTTOFILE) != 0) {
        Destination destPrn = (Destination)attributes.get(
                                             Destination.class);
        if (destPrn == null) {
            try {
                attributes.add(new Destination(
                                           new File("./out.prn").toURI()));
            } catch (SecurityException se) {
                try {
                    attributes.add(new Destination(
                                            new URI("file:out.prn")));
                } catch (URISyntaxException e) {
                }
            }
        }
    } else {
        attributes.remove(Destination.class);
    }

    if ((flags & PD_COLLATE) != 0) {
        setCollateAttrib(SheetCollate.COLLATED, attributes);
    } else {
        setCollateAttrib(SheetCollate.UNCOLLATED, attributes);
    }

    if ((flags & PD_PAGENUMS) != 0) {
        attributes.add(SunPageSelection.RANGE);
    } else if ((flags & PD_SELECTION) != 0) {
        attributes.add(SunPageSelection.SELECTION);
    } else {
        attributes.add(SunPageSelection.ALL);
    }

    if ((fields & DM_ORIENTATION) != 0) {
        if ((values & SET_ORIENTATION) != 0) {
            setOrientAttrib(OrientationRequested.LANDSCAPE, attributes);
        } else {
            setOrientAttrib(OrientationRequested.PORTRAIT, attributes);
        }
    }

    if ((fields & DM_COLOR) != 0) {
        if ((values & SET_COLOR) != 0) {
            setColorAttrib(Chromaticity.COLOR, attributes);
        } else {
            setColorAttrib(Chromaticity.MONOCHROME, attributes);
        }
    }

    if ((fields & DM_PRINTQUALITY) != 0) {
        PrintQuality quality;
        if ((values & SET_RES_LOW) != 0) {
            quality = PrintQuality.DRAFT;
        } else if ((fields & SET_RES_HIGH) != 0) {
            quality = PrintQuality.HIGH;
        } else {
            quality = PrintQuality.NORMAL;
        }
        setQualityAttrib(quality, attributes);
    }

    if ((fields & DM_DUPLEX) != 0) {
        Sides sides;
        if ((values & SET_DUP_VERTICAL) != 0) {
            sides = Sides.TWO_SIDED_LONG_EDGE;
        } else if ((values & SET_DUP_HORIZONTAL) != 0) {
            sides = Sides.TWO_SIDED_SHORT_EDGE;
        } else {
            sides = Sides.ONE_SIDED;
        }
        setSidesAttrib(sides, attributes);
    }
}
 
开发者ID:campolake,项目名称:openjdk9,代码行数:77,代码来源:WPrinterJob.java

示例8: getSupportedAttributeValues

public Object getSupportedAttributeValues(
                final Class<? extends Attribute> category,
                final DocFlavor flavor, final AttributeSet attributes) {
    checkArgs(category, flavor);

    try {
        if (OrientationRequested.class.equals(category)) {
            return WinPrinterFactory
                            .getSupportedOrientations(getPrinterHandle());
        } else if (Media.class.equals(category)
                        || MediaSizeName.class.equals(category)) {
            return WinPrinterFactory
                            .getSupportedMediaSizeNames(getPrinterHandle());
        } else if (MediaSize.class.equals(category)) {
            return WinPrinterFactory
                            .getSupportedMediaSizes(getPrinterHandle());
        } else if (CopiesSupported.class.equals(category)) {
            final int max = WinPrinterFactory
                            .getMaxNumberOfCopies(getPrinterHandle());
            return max > 1 ? new CopiesSupported(1, max)
                            : new CopiesSupported(1);
        } else if (PrintQuality.class.equals(category)) {
            return new PrintQuality[] { PrintQuality.HIGH,
                            PrintQuality.NORMAL, PrintQuality.DRAFT };
        } else if (Sides.class.equals(category)) {
            return WinPrinterFactory.isDuplexSupported(getPrinterHandle())
                            ? new Sides[] { Sides.ONE_SIDED,
                                            Sides.TWO_SIDED_SHORT_EDGE,
                                            Sides.TWO_SIDED_LONG_EDGE }
                            : new Sides[] { Sides.ONE_SIDED };
        } else if (SheetCollate.class.equals(category)) {
            return WinPrinterFactory.isDuplexSupported(getPrinterHandle())
                            ? new SheetCollate[] { SheetCollate.COLLATED,
                                            SheetCollate.UNCOLLATED }
                            : new SheetCollate[] { SheetCollate.UNCOLLATED };
        } else if (Chromaticity.class.equals(category)) {
            return WinPrinterFactory
                            .isColorPrintingSupported(getPrinterHandle())
                            ? new Chromaticity[] { Chromaticity.MONOCHROME,
                                            Chromaticity.COLOR }
                            : new Chromaticity[] { Chromaticity.MONOCHROME };
        } else if (PrinterResolution.class.equals(category)) {
            return WinPrinterFactory
                            .getSupportedPrinterResolutions(getPrinterHandle());
        } else if (PrintQuality.class.equals(category)) {
            return new PrintQuality[] { PrintQuality.HIGH,
                            PrintQuality.NORMAL, PrintQuality.DRAFT };
        }
    } catch (final PrintException ex) {
        throw new RuntimeException(ex);
    }

    return null;
}
 
开发者ID:shannah,项目名称:cn1,代码行数:54,代码来源:WinPrintService.java

示例9: getSupportedAttributeValues

public Object getSupportedAttributeValues(Class category, DocFlavor flavor,
        AttributeSet attributes) {
    if (flavor != null &&
        (flavor.equals(DocFlavor.INPUT_STREAM.AUTOSENSE) ||
         flavor.equals(DocFlavor.BYTE_ARRAY.AUTOSENSE) ||
         flavor.equals(DocFlavor.URL.AUTOSENSE) ||
         flavor.equals(DocFlavor.INPUT_STREAM.POSTSCRIPT) ||
         flavor.equals(DocFlavor.BYTE_ARRAY.POSTSCRIPT) ||
         flavor.equals(DocFlavor.URL.POSTSCRIPT))) {
        return null;
    }
    if (category.equals(Copies.class)) {
        int copies = getCopiesSupported(serviceName);
        if (copies == 1) {
            return new CopiesSupported(1);
        } else if (copies > 1) {
            return new CopiesSupported(1, copies);
        }
    } else if (category.equals(Sides.class)) {
        if (getSidesSupported(serviceName)) {
            return new Sides[] {Sides.ONE_SIDED,
                                Sides.TWO_SIDED_SHORT_EDGE,
                                Sides.TWO_SIDED_LONG_EDGE,
                                Sides.DUPLEX,
                                Sides.TUMBLE};
        }
    } else if (category.equals(Media.class)) {
        return getSupportedMediaSizeNames();
    } else if (category.equals(MediaSizeName.class)) {
        return getSupportedMediaSizeNames();
    } else if (category.equals(Chromaticity.class)) {
        if (getColorSupported(serviceName)) {
            return new Chromaticity[] { Chromaticity.MONOCHROME,
                                        Chromaticity.COLOR };
        } else {
            return new Chromaticity[] { Chromaticity.MONOCHROME };
        }
    } else if (category.equals(OrientationRequested.class)) {
        if (getOrientationSupported(serviceName)) {
            return new OrientationRequested[]
                { OrientationRequested.PORTRAIT,
                  OrientationRequested.LANDSCAPE };
        }
    } else if (category.equals(PrinterResolution.class)) {
        int[] resolutions = getResolutionsSupported(serviceName);
        if (resolutions != null && resolutions.length > 1) {
            PrinterResolution[] res =
                new PrinterResolution[resolutions.length / 2];
            for (int i = 0; i < resolutions.length / 2; i++) {
                res[i] = new PrinterResolution(resolutions[i * 2],
                        resolutions[i * 2 + 1], PrinterResolution.DPI);
            }
            return res;
        }
    } else if (category.equals(SheetCollate.class)) {
        if (getCollateSupported(serviceName)) {
            return new SheetCollate[] { SheetCollate.COLLATED,
                                        SheetCollate.UNCOLLATED };
        }
    }
    return null;
}
 
开发者ID:shannah,项目名称:cn1,代码行数:62,代码来源:GDIClient.java


注:本文中的javax.print.attribute.standard.Sides.ONE_SIDED属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。