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


Java TubeCloner类代码示例

本文整理汇总了Java中com.sun.xml.internal.ws.api.pipe.TubeCloner的典型用法代码示例。如果您正苦于以下问题:Java TubeCloner类的具体用法?Java TubeCloner怎么用?Java TubeCloner使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: AbstractFilterTubeImpl

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
protected AbstractFilterTubeImpl(AbstractFilterTubeImpl that, TubeCloner cloner) {
    super(that, cloner);
    if (that.next != null) {
        this.next = cloner.copy(that.next);
    } else {
        this.next = null;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:AbstractFilterTubeImpl.java

示例2: WsaTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
public WsaTube(WsaTube that, TubeCloner cloner) {
    super(that, cloner);
    this.wsdlPort = that.wsdlPort;
    this.binding = that.binding;
    this.helper = that.helper;
    addressingVersion = that.addressingVersion;
    soapVersion = that.soapVersion;
    addressingRequired = that.addressingRequired;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:WsaTube.java

示例3: ServerMessageHandlerTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */
private ServerMessageHandlerTube(ServerMessageHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.seiModel = that.seiModel;
    this.handlers = that.handlers;
    this.roles = that.roles;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:ServerMessageHandlerTube.java

示例4: ServerLogicalHandlerTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
/**
 * Copy constructor for {@link com.sun.xml.internal.ws.api.pipe.Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)}.
 */

private ServerLogicalHandlerTube(ServerLogicalHandlerTube that, TubeCloner cloner) {
    super(that, cloner);
    this.seiModel = that.seiModel;
    this.handlers = that.handlers;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:ServerLogicalHandlerTube.java

示例5: LoggingDumpTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
/**
 * Copy constructor.
 */
private LoggingDumpTube(LoggingDumpTube original, TubeCloner cloner) {
    super(original, cloner);

    this.messageDumper = original.messageDumper;
    this.loggingLevel = original.loggingLevel;
    this.position = original.position;

    this.tubeId = ID_GENERATOR.incrementAndGet();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:LoggingDumpTube.java

示例6: MessageDumpingTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
/**
 * Copy constructor.
 */
MessageDumpingTube(MessageDumpingTube that, TubeCloner cloner) {
    super(that, cloner);


    this.messageDumpingFeature = that.messageDumpingFeature;
    this.tubeId = ID_GENERATOR.incrementAndGet();
    this.messageDumper = that.messageDumper;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:MessageDumpingTube.java

示例7: ClientSchemaValidationTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
protected ClientSchemaValidationTube(ClientSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    this.port = that.port;
    this.schema = that.schema;
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:ClientSchemaValidationTube.java

示例8: ServerSchemaValidationTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
protected ServerSchemaValidationTube(ServerSchemaValidationTube that, TubeCloner cloner) {
    super(that,cloner);
    //this.docs = that.docs;
    this.schema = that.schema;      // Schema is thread-safe
    this.validator = schema.newValidator();
    this.noValidation = that.noValidation;
    this.seiModel = that.seiModel;
    this.wsdlPort = that.wsdlPort;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:ServerSchemaValidationTube.java

示例9: DumpTube

import com.sun.xml.internal.ws.api.pipe.TubeCloner; //导入依赖的package包/类
/**
 * Copy constructor.
 */
protected DumpTube(DumpTube that, TubeCloner cloner) {
    super(that,cloner);
    this.name = that.name;
    this.out = that.out;
    this.staxOut = that.staxOut;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:DumpTube.java


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