java类javax.xml.bind.annotation.XmlTransient的实例源码

SOAPFaultBuilder.java 文件源码 项目:OpenJSharp 阅读 26 收藏 0 点赞 0 评论 0
public @XmlTransient @Nullable QName getFirstDetailEntryName() {
    DetailType dt = getDetail();
    if (dt != null) {
        Node entry = dt.getDetail(0);
        if (entry != null) {
            return new QName(entry.getNamespaceURI(), entry.getLocalName());
        }
    }
    return null;
}
BaseEntity.java 文件源码 项目:GeCMS 阅读 34 收藏 0 点赞 0 评论 0
@JsonIgnore
@XmlTransient
public Map<String, String> getSqlMap() {
    if (sqlMap == null){
        sqlMap = Maps.newHashMap();
    }
    return sqlMap;
}
PatientAccount.java 文件源码 项目:grooves 阅读 20 收藏 0 点赞 0 评论 0
@NotNull
@Override
@XmlTransient
// tag::documented[]
public Publisher<Patient> getAggregateObservable() { // <4>
    return toPublisher(aggregate != null ? just(aggregate) : empty());
}
Project.java 文件源码 项目:AgentWorkbench 阅读 40 收藏 0 点赞 0 评论 0
/**
 * Sets the new project view that is either {@link Project#VIEW_Developer} or {@link Project#VIEW_User}.
 * @param newProjectView the new project view to set
 */
@XmlTransient
public void setProjectView(String newProjectView) {
    AwbProjectEditorWindow pew = this.getProjectEditorWindow();
    if (pew != null && newProjectView.equals(this.projectView) == false) {

        // --- Change view ----------------------------
        this.projectView = newProjectView;
        setUnsaved(true);
        setChanged();
        notifyObservers(CHANGED_ProjectView);
        pew.validateStartTab();
    }
}
AgentStartArguments.java 文件源码 项目:AgentWorkbench 阅读 25 收藏 0 点赞 0 评论 0
/**
 * Gets the start arguments.
 * @return the start arguments
 */
@XmlTransient
public Vector<AgentStartArgument> getStartArguments() {
    if (this.startArguments==null) {
        this.startArguments=new Vector<AgentStartArgument>();
    }
    return startArguments;
}
Project.java 文件源码 项目:AgentWorkbench 阅读 37 收藏 0 点赞 0 评论 0
/**
 * Gets the distribution setup.
 * @return the distributionSetup
 */
@XmlTransient
public DistributionSetup getDistributionSetup() {
    if (distributionSetup == null) {
        distributionSetup = new DistributionSetup();
    }
    return distributionSetup;
}
Project.java 文件源码 项目:AgentWorkbench 阅读 34 收藏 0 点赞 0 评论 0
/**
 * Gets the agent class load metrics.
 * @return the agent class load metrics
 */
@XmlTransient
public AgentClassLoadMetricsTable getAgentClassLoadMetrics() {
    if (agentClassLoadMetricsTable == null) {
        agentClassLoadMetricsTable = new AgentClassLoadMetricsTable(this);
    }
    if (agentClassLoadMetricsTable.getProject() == null) {
        agentClassLoadMetricsTable.setProject(this);
    }
    return agentClassLoadMetricsTable;
}
GeneralGraphSettings4MAS.java 文件源码 项目:AgentWorkbench 阅读 21 收藏 0 点赞 0 评论 0
/**
 * Returns the vector of custom {@link CustomToolbarComponentDescription}.
 * @return the vector of custom {@link CustomToolbarComponentDescription}.
 */
@XmlTransient
public Vector<CustomToolbarComponentDescription> getCustomToolbarComponentDescriptions() {
    if (customToolbarComponentDescriptions==null) {
        customToolbarComponentDescriptions = new Vector<CustomToolbarComponentDescription>();
    }
    return customToolbarComponentDescriptions;
}
Project.java 文件源码 项目:AgentWorkbench 阅读 38 收藏 0 点赞 0 评论 0
/**
 * Returns the current ComboBoxModel for environment types.
 * @return the environmentsComboBoxModel
 */
@XmlTransient
public DefaultComboBoxModel<EnvironmentType> getEnvironmentsComboBoxModel() {
    if (environmentsComboBoxModel == null) {
        environmentsComboBoxModel = new DefaultComboBoxModel<EnvironmentType>();
    }
    return environmentsComboBoxModel;
}
Model.java 文件源码 项目:Java-APIs 阅读 28 收藏 0 点赞 0 评论 0
@Override
@XmlTransient
public String getValue() {
    return this.name;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 24 收藏 0 点赞 0 评论 0
@XmlTransient
public ParticleParameter getDeltaHeight() {
  return this.deltaHeight;
}
AccountQueryAccountLogVO.java 文件源码 项目:pay4j 阅读 28 收藏 0 点赞 0 评论 0
@XmlTransient
public String getPartnerId() {
    return partnerId;
}
AccountQueryAccountLogVO.java 文件源码 项目:pay4j 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public String getTradeNo() {
    return tradeNo;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 25 收藏 0 点赞 0 评论 0
@XmlTransient
public ParticleParameter getDeltaY() {
  return this.deltaY;
}
ClassInfoImpl.java 文件源码 项目:openjdk-jdk10 阅读 37 收藏 0 点赞 0 评论 0
/**
 * Checks if the properties in this given super class should be aggregated into this class.
 */
private boolean shouldRecurseSuperClass(C sc) {
    return sc!=null
        && (builder.isReplaced(sc) || reader().hasClassAnnotation(sc, XmlTransient.class));
}
Prescription.java 文件源码 项目:E-Clinic 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public Collection<Order1> getOrder1Collection() {
    return order1Collection;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public ParticleParameter getGravityY() {
  return this.gravityY;
}
Control.java 文件源码 项目:Multicentro_Mascotas 阅读 29 收藏 0 点赞 0 评论 0
@XmlTransient
public List<DetalleControl> getDetalleControlList() {
    return detalleControlList;
}
City.java 文件源码 项目:E-Clinic 阅读 28 收藏 0 点赞 0 评论 0
@XmlTransient
public Collection<Address> getAddressCollection() {
    return addressCollection;
}
DocRef.java 文件源码 项目:stroom-query 阅读 33 收藏 0 点赞 0 评论 0
@XmlTransient
@JsonIgnore
@Override
public String getDisplayValue() {
    return name;
}
Patient.java 文件源码 项目:E-Clinic 阅读 31 收藏 0 点赞 0 评论 0
@XmlTransient
public Collection<Patientsurgicalhx> getPatientsurgicalhxCollection() {
    return patientsurgicalhxCollection;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 42 收藏 0 点赞 0 评论 0
@XmlTransient
public String getParticleText() {
  return this.particleText;
}
AccountQueryAccountLogVO.java 文件源码 项目:pay4j 阅读 37 收藏 0 点赞 0 评论 0
@XmlTransient
public String getTradeRefundAmount() {
    return tradeRefundAmount;
}
PaisDTO.java 文件源码 项目:EJB-CON-DTO 阅读 35 收藏 0 点赞 0 评论 0
@XmlTransient
public List<EstadoDTO> getEstadoList() {
    return estadoList;
}
ApiResponseMessage.java 文件源码 项目:jmzTab-m 阅读 21 收藏 0 点赞 0 评论 0
@XmlTransient
public int getCode() {
    return code;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public int getSpawnRate() {
  return this.spawnRate;
}
AccountQueryAccountLogVO.java 文件源码 项目:pay4j 阅读 27 收藏 0 点赞 0 评论 0
@XmlTransient
public String getBalance() {
    return balance;
}
Transmission.java 文件源码 项目:marathonv5 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public Collection<Product> getProductCollection() {
    return productCollection;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 26 收藏 0 点赞 0 评论 0
@XmlTransient
public ParticleParameter getX() {
  return this.x;
}
CustomEmitterData.java 文件源码 项目:litiengine 阅读 25 收藏 0 点赞 0 评论 0
@XmlTransient
public ParticleParameter getY() {
  return this.y;
}


问题


面经


文章

微信
公众号

扫码关注公众号