Searched refs:Result (Results 1 - 25 of 128) sorted by relevance

123456

/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DGuard.java43 public Result evaluate( FSM fsm, Input in )
49 public static final class Result { class in interface:Guard
52 private Result( String name ) method in class:Guard.Result
57 public static Result convert( boolean res )
62 public Result complement()
74 return "Guard.Result[" + name + "]" ;
77 public static final Result ENABLED = new Result( "ENABLED" ) ;
78 public static final Result DISABLED = new Result( "DISABLE
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DSchemaOutputResolver.java28 import javax.xml.transform.Result;
49 * will be written, and return it as a {@link Result} object.
67 * a {@link Result} object that encapsulates the actual destination
70 * If the {@link Result} object has a system ID, it must be an
74 * If the {@link Result} object does not have a system ID, a schema
81 public abstract Result createOutput( String namespaceUri, String suggestedFileName ) throws IOException;
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DAuthenticator.java44 public abstract static class Result {} class in class:Authenticator
50 public static class Failure extends Result {
71 public static class Success extends Result {
92 public static class Retry extends Result {
124 public abstract Result authenticate (HttpExchange exch);
/openjdk7/jaxp/src/javax/xml/transform/
H A DResult.java34 public interface Result { interface
50 * <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and
69 * Set the system identifier for this Result.
71 * <p>If the Result is not to be written to a file, the system identifier is optional.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLResolver.java30 import javax.xml.transform.Result;
40 * The Result object systemids are also relative urls(for e.g: AbsWsdl.wsdl).
46 * Create a Result object into which concrete WSDL is to be generated.
48 * @return Result for the concrete WSDL
50 public @NotNull Result getWSDL(@NotNull String suggestedFilename);
53 * Create a Result object into which abstract WSDL is to be generated. If the the
62 public @Nullable Result getAbstractWSDL(@NotNull Holder<String> filename);
65 * Create a Result object into which schema doc is to be generated. Typically if
74 public @Nullable Result getSchemaOutput(@NotNull String namespace, @NotNull Holder<String> filename);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHelper.java25 import javax.xml.transform.Result;
38 public void validate(Source source, Result result)
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DDirStateFactory.java133 * @return A <tt>Result</tt> containing the object's state for binding
142 public Result getStateToBind(Object obj, Name name, Context nameCtx,
152 public static class Result { class in interface:DirStateFactory
165 * Constructs an instance of Result.
170 public Result(Object obj, Attributes outAttrs) { method in class:DirStateFactory.Result
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DTransformerHandler.java28 import javax.xml.transform.Result;
38 * them to a Result.
44 * <p>Set the <code>Result</code> associated with this
47 * @param result A <code>Result</code> instance, should not be
52 public void setResult(Result result) throws IllegalArgumentException;
H A DSAXResult.java28 import javax.xml.transform.Result;
34 * <p>Acts as an holder for a transformation Result.</p>
38 public class SAXResult implements Result {
43 * the Transformer supports Result output of this type.
73 * Get the {@link org.xml.sax.ContentHandler} that is the Result.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/
H A DJ2SJAXBModel.java32 import javax.xml.transform.Result;
81 void generateEpisodeFile(Result output);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/annotation/
H A DDomHandler.java29 import javax.xml.transform.Result;
54 public interface DomHandler<ElementT,ResultT extends Result> {
58 * {@link Result} object.
67 * and the invocation of {@link #getElement(Result)}, they
72 * The {@link Result} object created from this method
82 * Once the portion is sent to the {@link Result}. This method is called
88 * to the {@link Result} object.
91 * The {@link Result} object created by {@link #createUnmarshaller(ValidationEventHandler)}.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DFoolProofResolver.java32 import javax.xml.transform.Result;
53 public Result createOutput(String namespaceUri, String suggestedFileName) throws IOException {
55 Result r = resolver.createOutput(namespaceUri,suggestedFileName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DResultFactory.java28 import javax.xml.transform.Result;
34 * Factory for producing XmlSerializers for various Result types.
46 * Factory method for producing {@link XmlSerializer) from {@link javax.xml.transform.Result}.
51 * @param result the Result that will receive output from the XmlSerializer
52 * @return an implementation of XmlSerializer that will produce output on the supplied Result
54 public static XmlSerializer createSerializer(Result result) {
64 throw new UnsupportedOperationException("Unsupported Result type: " + result.getClass().getName());
H A DTXWResult.java30 import javax.xml.transform.Result;
33 * Allow you to wrap {@link TypedXmlWriter} into a {@link Result}
37 * This class doesn't extend from known {@link Result} type,
42 public class TXWResult implements Result {
/openjdk7/jdk/test/sun/management/jmxremote/
H A DLocalRMIServerSocketFactoryTest.java48 static final class Result extends Exception { class in class:LocalRMIServerSocketFactoryTest
50 private Result() { method in class:LocalRMIServerSocketFactoryTest.Result
53 static final Result SUCCESS = new Result();
61 if (x == Result.SUCCESS) {
95 Exception error = Result.SUCCESS;
/openjdk7/jaxp/src/javax/xml/transform/stax/
H A DStAXResult.java30 import javax.xml.transform.Result;
33 * <p>Acts as a holder for an XML {@link Result} in the
37 * a <code>Result</code>, e.g. {@link javax.xml.transform.Transformer},
39 * <code>Result</code> as input.
51 public class StAXResult implements Result {
54 * the Transformer supports Result output of this type.
61 * <code>Result</code> output.</p>
67 * <code>Result</code> output.</p>
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLXML.java33 import javax.xml.transform.Result;
47 * may also be accessed through a Source or set as a Result, which
123 * Result result = new StreamResult(myFile);
139 * Result result = sqlxml.setResult(null);
142 * Any Source can be transformed to a Result using the identity transform
148 * Result result = new StreamResult(myFile);
155 * Result result = new StreamResult(System.out);
385 * Returns a Result for setting the XML value designated by this SQLXML instance.
387 * The systemID of the Result is implementation dependent.
405 * If resultClass is null, a vendor specific Result implementatio
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpointReference.java29 import javax.xml.transform.Result;
123 public abstract void writeTo(Result result);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A Dpackage-info.java126 * <LI><P>{@link javax.xml.bind.Marshaller#marshal(Object,Result) Marshaller.marshal(Object, DomResult)}</P>
152 import javax.xml.transform.Result;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A Dpackage-info.java117 * <LI><P>{@link javax.xml.bind.Marshaller#marshal(Object,Result) Marshaller.marshal(Object, DomResult)}</P>
146 import javax.xml.transform.Result;
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java55 class Result extends Error {
58 Result(TreePath path) {
65 throw new Result(new TreePath(getCurrentPath(), target));
72 } catch (Result result) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DConnectionAnchor.java31 import org.netbeans.api.visual.anchor.Anchor.Result;
57 public Result compute(Entry entry) {
58 return new Result(getRelatedSceneLocation(), Anchor.DIRECTION_ANY);
/openjdk7/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java48 enum Result { enum in class:BoxingConversionTest
55 Result(boolean value) { method in class:BoxingConversionTest.Result
61 ASSIGNMENT_CONVERSION(EnumSet.of(Result.OK_BOTH, Result.OK_ASSIGN_ONLY)) {
63 void check(TypeHarness harness, Type from, Type to, Result expected) {
67 METHOD_CONVERSION(EnumSet.of(Result.OK_BOTH)) {
69 void check(TypeHarness harness, Type from, Type to, Result expected) {
74 EnumSet<Result> resSet;
76 private ConversionKind(EnumSet<Result> resSet) {
80 abstract void check(TypeHarness harness, Type from, Type to, Result expecte
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java113 static class Result { class in class:FindDecoderBugs
121 Result(ByteBuffer ib, CharBuffer ob, CoderResult cr) { method in class:FindDecoderBugs.Result
146 static boolean eq(Result x, Result y) {
194 Result recode(ByteBuffer ib, CharBuffer ob) {
205 Result r = new Result(ib, ob, cr);
226 cs, r, new Result(ib, ob, cr2));
235 new Result(ib, ob, null)))
241 Result recode
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java40 static class Result { class in class:WindowsPathParser
45 Result(WindowsPathType type, String root, String path) { method in class:WindowsPathParser.Result
76 static Result parse(String input) {
84 static Result parseNormalizedPath(String input) {
94 private static Result parse(String input, boolean requireToNormalize) {
153 return new Result(type, root, normalize(sb, input, off));
155 return new Result(type, root, input);

Completed in 157 milliseconds

123456