From c993ba575bdd1530b7bbc0c6a19c32e66fce4b89 Mon Sep 17 00:00:00 2001 From: lresende Date: Tue, 10 Nov 2009 19:19:15 +0000 Subject: moving SDO branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834612 13f79535-47bb-0310-9956-ffa450edef68 --- .../com/example/noInterfaces/simple/Quote.java | 1237 ++++++++++++++++++++ .../example/noInterfaces/simple/SimpleFactory.java | 332 ++++++ 2 files changed, 1569 insertions(+) create mode 100644 sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/Quote.java create mode 100644 sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/SimpleFactory.java (limited to 'sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple') diff --git a/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/Quote.java b/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/Quote.java new file mode 100644 index 0000000000..f01784049f --- /dev/null +++ b/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/Quote.java @@ -0,0 +1,1237 @@ +/** + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package com.example.noInterfaces.simple; + +import commonj.sdo.Type; + +import java.io.Serializable; + +import java.math.BigDecimal; + +import java.util.Collection; +import java.util.List; + +import org.apache.tuscany.sdo.impl.DataObjectBase; + +/** + * + * A representation of the model object 'Quote'. + * + * + *

+ * The following features are supported: + *

+ *

+ * + * @extends Serializable + * @generated + */ +public class Quote extends DataObjectBase implements Serializable +{ + + public final static int SYMBOL = 0; + + public final static int COMPANY_NAME = 1; + + public final static int PRICE = 2; + + public final static int OPEN1 = 3; + + public final static int HIGH = 4; + + public final static int LOW = 5; + + public final static int VOLUME = 6; + + public final static int CHANGE1 = 7; + + public final static int QUOTES = 8; + + public final static int SDO_PROPERTY_COUNT = 9; + + public final static int EXTENDED_PROPERTY_COUNT = 0; + + + /** + * The internal feature id for the 'Symbol' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_SYMBOL = 0; + + /** + * The internal feature id for the 'Company Name' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_COMPANY_NAME = 1; + + /** + * The internal feature id for the 'Price' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_PRICE = 2; + + /** + * The internal feature id for the 'Open1' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_OPEN1 = 3; + + /** + * The internal feature id for the 'High' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_HIGH = 4; + + /** + * The internal feature id for the 'Low' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_LOW = 5; + + /** + * The internal feature id for the 'Volume' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_VOLUME = 6; + + /** + * The internal feature id for the 'Change1' attribute. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_CHANGE1 = 7; + + /** + * The internal feature id for the 'Quotes' containment reference list. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_QUOTES = 8; + + /** + * The number of properties for this type. + * + * + * @generated + * @ordered + */ + public final static int INTERNAL_PROPERTY_COUNT = 9; + + protected int internalConvertIndex(int internalIndex) + { + switch (internalIndex) + { + case INTERNAL_SYMBOL: return SYMBOL; + case INTERNAL_COMPANY_NAME: return COMPANY_NAME; + case INTERNAL_PRICE: return PRICE; + case INTERNAL_OPEN1: return OPEN1; + case INTERNAL_HIGH: return HIGH; + case INTERNAL_LOW: return LOW; + case INTERNAL_VOLUME: return VOLUME; + case INTERNAL_CHANGE1: return CHANGE1; + case INTERNAL_QUOTES: return QUOTES; + } + return super.internalConvertIndex(internalIndex); + } + + + /** + * The default value of the '{@link #getSymbol() Symbol}' attribute. + * + * + * @see #getSymbol() + * @generated + * @ordered + */ + protected static final String SYMBOL_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getSymbol() Symbol}' attribute. + * + * + * @see #getSymbol() + * @generated + * @ordered + */ + protected String symbol = SYMBOL_DEFAULT_; + + /** + * This is true if the Symbol attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean symbol_set_ = false; + + /** + * The default value of the '{@link #getCompanyName() Company Name}' attribute. + * + * + * @see #getCompanyName() + * @generated + * @ordered + */ + protected static final String COMPANY_NAME_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getCompanyName() Company Name}' attribute. + * + * + * @see #getCompanyName() + * @generated + * @ordered + */ + protected String companyName = COMPANY_NAME_DEFAULT_; + + /** + * This is true if the Company Name attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean companyName_set_ = false; + + /** + * The default value of the '{@link #getPrice() Price}' attribute. + * + * + * @see #getPrice() + * @generated + * @ordered + */ + protected static final BigDecimal PRICE_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getPrice() Price}' attribute. + * + * + * @see #getPrice() + * @generated + * @ordered + */ + protected BigDecimal price = PRICE_DEFAULT_; + + /** + * This is true if the Price attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean price_set_ = false; + + /** + * The default value of the '{@link #getOpen1() Open1}' attribute. + * + * + * @see #getOpen1() + * @generated + * @ordered + */ + protected static final BigDecimal OPEN1_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getOpen1() Open1}' attribute. + * + * + * @see #getOpen1() + * @generated + * @ordered + */ + protected BigDecimal open1 = OPEN1_DEFAULT_; + + /** + * This is true if the Open1 attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean open1_set_ = false; + + /** + * The default value of the '{@link #getHigh() High}' attribute. + * + * + * @see #getHigh() + * @generated + * @ordered + */ + protected static final BigDecimal HIGH_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getHigh() High}' attribute. + * + * + * @see #getHigh() + * @generated + * @ordered + */ + protected BigDecimal high = HIGH_DEFAULT_; + + /** + * This is true if the High attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean high_set_ = false; + + /** + * The default value of the '{@link #getLow() Low}' attribute. + * + * + * @see #getLow() + * @generated + * @ordered + */ + protected static final BigDecimal LOW_DEFAULT_ = null; + + /** + * The cached value of the '{@link #getLow() Low}' attribute. + * + * + * @see #getLow() + * @generated + * @ordered + */ + protected BigDecimal low = LOW_DEFAULT_; + + /** + * This is true if the Low attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean low_set_ = false; + + /** + * The default value of the '{@link #getVolume() Volume}' attribute. + * + * + * @see #getVolume() + * @generated + * @ordered + */ + protected static final double VOLUME_DEFAULT_ = 0.0; + + /** + * The cached value of the '{@link #getVolume() Volume}' attribute. + * + * + * @see #getVolume() + * @generated + * @ordered + */ + protected double volume = VOLUME_DEFAULT_; + + /** + * This is true if the Volume attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean volume_set_ = false; + + /** + * The default value of the '{@link #getChange1() Change1}' attribute. + * + * + * @see #getChange1() + * @generated + * @ordered + */ + protected static final double CHANGE1_DEFAULT_ = 0.0; + + /** + * The cached value of the '{@link #getChange1() Change1}' attribute. + * + * + * @see #getChange1() + * @generated + * @ordered + */ + protected double change1 = CHANGE1_DEFAULT_; + + /** + * This is true if the Change1 attribute has been set. + * + * + * @generated + * @ordered + */ + protected boolean change1_set_ = false; + + /** + * The cached value of the '{@link #getQuotes() Quotes}' containment reference list. + * + * + * @see #getQuotes() + * @generated + * @ordered + */ + + protected List quotes = null; + + /** + * + * + * @generated + */ + public Quote() + { + super(); + } + + /** + * + * + * @generated + */ + public Type getStaticType() + { + return ((SimpleFactory)SimpleFactory.INSTANCE).getQuote(); + } + + /** + * Returns the value of the 'Symbol' attribute. + * + *

+ * If the meaning of the 'Symbol' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Symbol' attribute. + * @see #isSetSymbol() + * @see #unsetSymbol() + * @see #setSymbol(String) + * @generated + */ + public String getSymbol() + { + return symbol; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getSymbol Symbol}' attribute. + * + * + * @param value the new value of the 'Symbol' attribute. + * @see #isSetSymbol() + * @see #unsetSymbol() + * @see #getSymbol() + * @generated + */ + public void setSymbol(String newSymbol) + { + String oldSymbol = symbol; + symbol = newSymbol; + boolean oldSymbol_set_ = symbol_set_; + symbol_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_SYMBOL, oldSymbol, symbol, !oldSymbol_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getSymbol Symbol}' attribute. + * + * + * @see #isSetSymbol() + * @see #getSymbol() + * @see #setSymbol(String) + * @generated + */ + public void unsetSymbol() + { + String oldSymbol = symbol; + boolean oldSymbol_set_ = symbol_set_; + symbol = SYMBOL_DEFAULT_; + symbol_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_SYMBOL, oldSymbol, SYMBOL_DEFAULT_, oldSymbol_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getSymbol Symbol}' attribute is set. + * + * + * @return whether the value of the 'Symbol' attribute is set. + * @see #unsetSymbol() + * @see #getSymbol() + * @see #setSymbol(String) + * @generated + */ + public boolean isSetSymbol() + { + return symbol_set_; + } + + /** + * Returns the value of the 'Company Name' attribute. + * + *

+ * If the meaning of the 'Company Name' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Company Name' attribute. + * @see #isSetCompanyName() + * @see #unsetCompanyName() + * @see #setCompanyName(String) + * @generated + */ + public String getCompanyName() + { + return companyName; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getCompanyName Company Name}' attribute. + * + * + * @param value the new value of the 'Company Name' attribute. + * @see #isSetCompanyName() + * @see #unsetCompanyName() + * @see #getCompanyName() + * @generated + */ + public void setCompanyName(String newCompanyName) + { + String oldCompanyName = companyName; + companyName = newCompanyName; + boolean oldCompanyName_set_ = companyName_set_; + companyName_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_COMPANY_NAME, oldCompanyName, companyName, !oldCompanyName_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getCompanyName Company Name}' attribute. + * + * + * @see #isSetCompanyName() + * @see #getCompanyName() + * @see #setCompanyName(String) + * @generated + */ + public void unsetCompanyName() + { + String oldCompanyName = companyName; + boolean oldCompanyName_set_ = companyName_set_; + companyName = COMPANY_NAME_DEFAULT_; + companyName_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_COMPANY_NAME, oldCompanyName, COMPANY_NAME_DEFAULT_, oldCompanyName_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getCompanyName Company Name}' attribute is set. + * + * + * @return whether the value of the 'Company Name' attribute is set. + * @see #unsetCompanyName() + * @see #getCompanyName() + * @see #setCompanyName(String) + * @generated + */ + public boolean isSetCompanyName() + { + return companyName_set_; + } + + /** + * Returns the value of the 'Price' attribute. + * + *

+ * If the meaning of the 'Price' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Price' attribute. + * @see #isSetPrice() + * @see #unsetPrice() + * @see #setPrice(BigDecimal) + * @generated + */ + public BigDecimal getPrice() + { + return price; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getPrice Price}' attribute. + * + * + * @param value the new value of the 'Price' attribute. + * @see #isSetPrice() + * @see #unsetPrice() + * @see #getPrice() + * @generated + */ + public void setPrice(BigDecimal newPrice) + { + BigDecimal oldPrice = price; + price = newPrice; + boolean oldPrice_set_ = price_set_; + price_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_PRICE, oldPrice, price, !oldPrice_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getPrice Price}' attribute. + * + * + * @see #isSetPrice() + * @see #getPrice() + * @see #setPrice(BigDecimal) + * @generated + */ + public void unsetPrice() + { + BigDecimal oldPrice = price; + boolean oldPrice_set_ = price_set_; + price = PRICE_DEFAULT_; + price_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_PRICE, oldPrice, PRICE_DEFAULT_, oldPrice_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getPrice Price}' attribute is set. + * + * + * @return whether the value of the 'Price' attribute is set. + * @see #unsetPrice() + * @see #getPrice() + * @see #setPrice(BigDecimal) + * @generated + */ + public boolean isSetPrice() + { + return price_set_; + } + + /** + * Returns the value of the 'Open1' attribute. + * + *

+ * If the meaning of the 'Open1' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Open1' attribute. + * @see #isSetOpen1() + * @see #unsetOpen1() + * @see #setOpen1(BigDecimal) + * @generated + */ + public BigDecimal getOpen1() + { + return open1; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getOpen1 Open1}' attribute. + * + * + * @param value the new value of the 'Open1' attribute. + * @see #isSetOpen1() + * @see #unsetOpen1() + * @see #getOpen1() + * @generated + */ + public void setOpen1(BigDecimal newOpen1) + { + BigDecimal oldOpen1 = open1; + open1 = newOpen1; + boolean oldOpen1_set_ = open1_set_; + open1_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_OPEN1, oldOpen1, open1, !oldOpen1_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getOpen1 Open1}' attribute. + * + * + * @see #isSetOpen1() + * @see #getOpen1() + * @see #setOpen1(BigDecimal) + * @generated + */ + public void unsetOpen1() + { + BigDecimal oldOpen1 = open1; + boolean oldOpen1_set_ = open1_set_; + open1 = OPEN1_DEFAULT_; + open1_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_OPEN1, oldOpen1, OPEN1_DEFAULT_, oldOpen1_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getOpen1 Open1}' attribute is set. + * + * + * @return whether the value of the 'Open1' attribute is set. + * @see #unsetOpen1() + * @see #getOpen1() + * @see #setOpen1(BigDecimal) + * @generated + */ + public boolean isSetOpen1() + { + return open1_set_; + } + + /** + * Returns the value of the 'High' attribute. + * + *

+ * If the meaning of the 'High' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'High' attribute. + * @see #isSetHigh() + * @see #unsetHigh() + * @see #setHigh(BigDecimal) + * @generated + */ + public BigDecimal getHigh() + { + return high; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getHigh High}' attribute. + * + * + * @param value the new value of the 'High' attribute. + * @see #isSetHigh() + * @see #unsetHigh() + * @see #getHigh() + * @generated + */ + public void setHigh(BigDecimal newHigh) + { + BigDecimal oldHigh = high; + high = newHigh; + boolean oldHigh_set_ = high_set_; + high_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_HIGH, oldHigh, high, !oldHigh_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getHigh High}' attribute. + * + * + * @see #isSetHigh() + * @see #getHigh() + * @see #setHigh(BigDecimal) + * @generated + */ + public void unsetHigh() + { + BigDecimal oldHigh = high; + boolean oldHigh_set_ = high_set_; + high = HIGH_DEFAULT_; + high_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_HIGH, oldHigh, HIGH_DEFAULT_, oldHigh_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getHigh High}' attribute is set. + * + * + * @return whether the value of the 'High' attribute is set. + * @see #unsetHigh() + * @see #getHigh() + * @see #setHigh(BigDecimal) + * @generated + */ + public boolean isSetHigh() + { + return high_set_; + } + + /** + * Returns the value of the 'Low' attribute. + * + *

+ * If the meaning of the 'Low' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Low' attribute. + * @see #isSetLow() + * @see #unsetLow() + * @see #setLow(BigDecimal) + * @generated + */ + public BigDecimal getLow() + { + return low; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getLow Low}' attribute. + * + * + * @param value the new value of the 'Low' attribute. + * @see #isSetLow() + * @see #unsetLow() + * @see #getLow() + * @generated + */ + public void setLow(BigDecimal newLow) + { + BigDecimal oldLow = low; + low = newLow; + boolean oldLow_set_ = low_set_; + low_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_LOW, oldLow, low, !oldLow_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getLow Low}' attribute. + * + * + * @see #isSetLow() + * @see #getLow() + * @see #setLow(BigDecimal) + * @generated + */ + public void unsetLow() + { + BigDecimal oldLow = low; + boolean oldLow_set_ = low_set_; + low = LOW_DEFAULT_; + low_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_LOW, oldLow, LOW_DEFAULT_, oldLow_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getLow Low}' attribute is set. + * + * + * @return whether the value of the 'Low' attribute is set. + * @see #unsetLow() + * @see #getLow() + * @see #setLow(BigDecimal) + * @generated + */ + public boolean isSetLow() + { + return low_set_; + } + + /** + * Returns the value of the 'Volume' attribute. + * + *

+ * If the meaning of the 'Volume' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Volume' attribute. + * @see #isSetVolume() + * @see #unsetVolume() + * @see #setVolume(double) + * @generated + */ + public double getVolume() + { + return volume; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getVolume Volume}' attribute. + * + * + * @param value the new value of the 'Volume' attribute. + * @see #isSetVolume() + * @see #unsetVolume() + * @see #getVolume() + * @generated + */ + public void setVolume(double newVolume) + { + double oldVolume = volume; + volume = newVolume; + boolean oldVolume_set_ = volume_set_; + volume_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_VOLUME, oldVolume, volume, !oldVolume_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getVolume Volume}' attribute. + * + * + * @see #isSetVolume() + * @see #getVolume() + * @see #setVolume(double) + * @generated + */ + public void unsetVolume() + { + double oldVolume = volume; + boolean oldVolume_set_ = volume_set_; + volume = VOLUME_DEFAULT_; + volume_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_VOLUME, oldVolume, VOLUME_DEFAULT_, oldVolume_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getVolume Volume}' attribute is set. + * + * + * @return whether the value of the 'Volume' attribute is set. + * @see #unsetVolume() + * @see #getVolume() + * @see #setVolume(double) + * @generated + */ + public boolean isSetVolume() + { + return volume_set_; + } + + /** + * Returns the value of the 'Change1' attribute. + * + *

+ * If the meaning of the 'Change1' attribute isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Change1' attribute. + * @see #isSetChange1() + * @see #unsetChange1() + * @see #setChange1(double) + * @generated + */ + public double getChange1() + { + return change1; + } + /** + * Sets the value of the '{@link com.example.noInterfaces.simple.Quote#getChange1 Change1}' attribute. + * + * + * @param value the new value of the 'Change1' attribute. + * @see #isSetChange1() + * @see #unsetChange1() + * @see #getChange1() + * @generated + */ + public void setChange1(double newChange1) + { + double oldChange1 = change1; + change1 = newChange1; + boolean oldChange1_set_ = change1_set_; + change1_set_ = true; + if (isNotifying()) + notify(ChangeKind.SET, INTERNAL_CHANGE1, oldChange1, change1, !oldChange1_set_); + } + + /** + * Unsets the value of the '{@link com.example.noInterfaces.simple.Quote#getChange1 Change1}' attribute. + * + * + * @see #isSetChange1() + * @see #getChange1() + * @see #setChange1(double) + * @generated + */ + public void unsetChange1() + { + double oldChange1 = change1; + boolean oldChange1_set_ = change1_set_; + change1 = CHANGE1_DEFAULT_; + change1_set_ = false; + if (isNotifying()) + notify(ChangeKind.UNSET, INTERNAL_CHANGE1, oldChange1, CHANGE1_DEFAULT_, oldChange1_set_); + } + + /** + * Returns whether the value of the '{@link com.example.noInterfaces.simple.Quote#getChange1 Change1}' attribute is set. + * + * + * @return whether the value of the 'Change1' attribute is set. + * @see #unsetChange1() + * @see #getChange1() + * @see #setChange1(double) + * @generated + */ + public boolean isSetChange1() + { + return change1_set_; + } + + /** + * Returns the value of the 'Quotes' containment reference list. + * The list contents are of type {@link com.example.noInterfaces.simple.Quote}. + * + *

+ * If the meaning of the 'Quotes' containment reference list isn't clear, + * there really should be more of a description here... + *

+ * + * @return the value of the 'Quotes' containment reference list. + * @generated + */ + public List getQuotes() + { + if (quotes == null) + { + quotes = createPropertyList(ListKind.CONTAINMENT, Quote.class, QUOTES, 0); + } + return quotes; + } + /** + * + * + * @generated + */ + public ChangeContext inverseRemove(Object otherEnd, int propertyIndex, ChangeContext changeContext) + { + switch (propertyIndex) + { + case QUOTES: + return removeFromList(getQuotes(), otherEnd, changeContext); + } + return super.inverseRemove(otherEnd, propertyIndex, changeContext); + } + + /** + * + * + * @generated + */ + public Object get(int propertyIndex, boolean resolve) + { + switch (propertyIndex) + { + case SYMBOL: + return getSymbol(); + case COMPANY_NAME: + return getCompanyName(); + case PRICE: + return getPrice(); + case OPEN1: + return getOpen1(); + case HIGH: + return getHigh(); + case LOW: + return getLow(); + case VOLUME: + return new Double(getVolume()); + case CHANGE1: + return new Double(getChange1()); + case QUOTES: + return getQuotes(); + } + return super.get(propertyIndex, resolve); + } + + /** + * + * + * @generated + */ + public void set(int propertyIndex, Object newValue) + { + switch (propertyIndex) + { + case SYMBOL: + setSymbol((String)newValue); + return; + case COMPANY_NAME: + setCompanyName((String)newValue); + return; + case PRICE: + setPrice((BigDecimal)newValue); + return; + case OPEN1: + setOpen1((BigDecimal)newValue); + return; + case HIGH: + setHigh((BigDecimal)newValue); + return; + case LOW: + setLow((BigDecimal)newValue); + return; + case VOLUME: + setVolume(((Double)newValue).doubleValue()); + return; + case CHANGE1: + setChange1(((Double)newValue).doubleValue()); + return; + case QUOTES: + getQuotes().clear(); + getQuotes().addAll((Collection)newValue); + return; + } + super.set(propertyIndex, newValue); + } + + /** + * + * + * @generated + */ + public void unset(int propertyIndex) + { + switch (propertyIndex) + { + case SYMBOL: + unsetSymbol(); + return; + case COMPANY_NAME: + unsetCompanyName(); + return; + case PRICE: + unsetPrice(); + return; + case OPEN1: + unsetOpen1(); + return; + case HIGH: + unsetHigh(); + return; + case LOW: + unsetLow(); + return; + case VOLUME: + unsetVolume(); + return; + case CHANGE1: + unsetChange1(); + return; + case QUOTES: + getQuotes().clear(); + return; + } + super.unset(propertyIndex); + } + + /** + * + * + * @generated + */ + public boolean isSet(int propertyIndex) + { + switch (propertyIndex) + { + case SYMBOL: + return isSetSymbol(); + case COMPANY_NAME: + return isSetCompanyName(); + case PRICE: + return isSetPrice(); + case OPEN1: + return isSetOpen1(); + case HIGH: + return isSetHigh(); + case LOW: + return isSetLow(); + case VOLUME: + return isSetVolume(); + case CHANGE1: + return isSetChange1(); + case QUOTES: + return quotes != null && !quotes.isEmpty(); + } + return super.isSet(propertyIndex); + } + + /** + * + * + * @generated + */ + public String toString() + { + if (isProxy(this)) return super.toString(); + + StringBuffer result = new StringBuffer(super.toString()); + result.append(" (symbol: "); + if (symbol_set_) result.append(symbol); else result.append(""); + result.append(", companyName: "); + if (companyName_set_) result.append(companyName); else result.append(""); + result.append(", price: "); + if (price_set_) result.append(price); else result.append(""); + result.append(", open1: "); + if (open1_set_) result.append(open1); else result.append(""); + result.append(", high: "); + if (high_set_) result.append(high); else result.append(""); + result.append(", low: "); + if (low_set_) result.append(low); else result.append(""); + result.append(", volume: "); + if (volume_set_) result.append(volume); else result.append(""); + result.append(", change1: "); + if (change1_set_) result.append(change1); else result.append(""); + result.append(')'); + return result.toString(); + } + +} // Quote diff --git a/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/SimpleFactory.java b/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/SimpleFactory.java new file mode 100644 index 0000000000..a3b8bd81c8 --- /dev/null +++ b/sdo-java/branches/sdo-1.0-incubating/tools/src/test/java/com/example/noInterfaces/simple/SimpleFactory.java @@ -0,0 +1,332 @@ +/** + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package com.example.noInterfaces.simple; + +import commonj.sdo.helper.HelperContext; +import org.apache.tuscany.sdo.helper.TypeHelperImpl; + +import commonj.sdo.DataObject; +import commonj.sdo.Property; +import commonj.sdo.Type; + +import org.apache.tuscany.sdo.impl.FactoryBase; + +import org.apache.tuscany.sdo.model.ModelFactory; + +import org.apache.tuscany.sdo.model.impl.ModelFactoryImpl; + +/** + * + * The Factory for the model. + * It provides a create method for each non-abstract class of the model. + * + * patternVersion=1.2; -noInterfaces + * @generated + */ +public class SimpleFactory extends FactoryBase +{ + + /** + * The singleton instance of the factory. + * + * + * @generated + */ + public static final SimpleFactory INSTANCE = com.example.noInterfaces.simple.SimpleFactory.init(); + + /** + * The package namespace URI. + * + * + * @generated + */ + public static final String NAMESPACE_URI = "http://www.example.com/simple"; + + /** + * The package namespace name. + * + * + * @generated + */ + public static final String NAMESPACE_PREFIX = "simple"; + + /** + * The version of the generator pattern used to generate this class. + * + * + * @generated + */ + public static final String PATTERN_VERSION = "1.2"; + + public static final int QUOTE = 1; + + /** + * Creates an instance of the factory. + * + * + * @generated + */ + public SimpleFactory() + { + super(NAMESPACE_URI, NAMESPACE_PREFIX, "com.example.noInterfaces.simple"); + } + + /** + * Registers the Factory instance so that it is available within the supplied scope. + * @argument scope a HelperContext instance that will make the types supported by this Factory available. + * + * + * @generated + */ + public void register(HelperContext scope) + { + if(scope == null) { + throw new IllegalArgumentException("Scope can not be null"); + } + + //Register dependent packages with provided scope + ModelFactory.INSTANCE.register(scope); + + // Initialize this package + TypeHelperImpl th = (TypeHelperImpl)scope.getTypeHelper(); + th.getExtendedMetaData().putPackage(NAMESPACE_URI, this); + } + + /** + * + * + * @generated + */ + public DataObject create(int typeNumber) + { + switch (typeNumber) + { + case QUOTE: return (DataObject)createQuote(); + default: + return super.create(typeNumber); + } + } + + /** + * + * + * @generated + */ + public Quote createQuote() + { + Quote quote = new Quote(); + return quote; + } + + // Following creates and initializes SDO metadata for the supported types. + protected Type quoteType = null; + + public Type getQuote() + { + return quoteType; + } + + + private static SimpleFactory instance = null; + public static SimpleFactory init() + { + if (instance != null ) return instance; + instance = new SimpleFactory(); + + // Initialize dependent packages + ModelFactory ModelFactoryInstance = ModelFactory.INSTANCE; + + // Create package meta-data objects + instance.createMetaData(); + + // Initialize created meta-data + instance.initializeMetaData(); + + // Mark meta-data to indicate it can't be changed + //theSimpleFactory.freeze(); //FB do we need to freeze / should we freeze ???? + + return instance; + } + + private boolean isCreated = false; + + public void createMetaData() + { + if (isCreated) return; + isCreated = true; + + // Create types and their properties + quoteType = createType(false, QUOTE); + createProperty(true, quoteType,Quote.INTERNAL_SYMBOL); + createProperty(true, quoteType,Quote.INTERNAL_COMPANY_NAME); + createProperty(true, quoteType,Quote.INTERNAL_PRICE); + createProperty(true, quoteType,Quote.INTERNAL_OPEN1); + createProperty(true, quoteType,Quote.INTERNAL_HIGH); + createProperty(true, quoteType,Quote.INTERNAL_LOW); + createProperty(true, quoteType,Quote.INTERNAL_VOLUME); + createProperty(true, quoteType,Quote.INTERNAL_CHANGE1); + createProperty(false, quoteType,Quote.INTERNAL_QUOTES); + } + + private boolean isInitialized = false; + + public void initializeMetaData() + { + if (isInitialized) return; + isInitialized = true; + + // Obtain other dependent packages + ModelFactoryImpl theModelPackageImpl = (ModelFactoryImpl)ModelFactory.INSTANCE; + Property property = null; + + // Add supertypes to types + + // Initialize types and properties + initializeType(quoteType, Quote.class, "Quote", false); + property = getLocalProperty(quoteType, 0); + initializeProperty(property, theModelPackageImpl.getString(), "symbol", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 1); + initializeProperty(property, theModelPackageImpl.getString(), "companyName", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 2); + initializeProperty(property, theModelPackageImpl.getDecimal(), "price", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 3); + initializeProperty(property, theModelPackageImpl.getDecimal(), "open1", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 4); + initializeProperty(property, theModelPackageImpl.getDecimal(), "high", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 5); + initializeProperty(property, theModelPackageImpl.getDecimal(), "low", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 6); + initializeProperty(property, theModelPackageImpl.getDouble(), "volume", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 7); + initializeProperty(property, theModelPackageImpl.getDouble(), "change1", null, 1, 1, Quote.class, false, true, false); + + property = getLocalProperty(quoteType, 8); + initializeProperty(property, this.getQuote(), "quotes", null, 0, -1, Quote.class, false, false, false, true , null); + + createXSDMetaData(theModelPackageImpl); + } + + protected void createXSDMetaData(ModelFactoryImpl theModelPackageImpl) + { + super.initXSD(); + + Property property = null; + + + property = createGlobalProperty + ("stockQuote", + this.getQuote(), + new String[] + { + "kind", "element", + "name", "stockQuote", + "namespace", "##targetNamespace" + }); + + addXSDMapping + (quoteType, + new String[] + { + "name", "Quote", + "kind", "elementOnly" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_SYMBOL), + new String[] + { + "kind", "element", + "name", "symbol" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_COMPANY_NAME), + new String[] + { + "kind", "element", + "name", "companyName" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_PRICE), + new String[] + { + "kind", "element", + "name", "price" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_OPEN1), + new String[] + { + "kind", "element", + "name", "open1" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_HIGH), + new String[] + { + "kind", "element", + "name", "high" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_LOW), + new String[] + { + "kind", "element", + "name", "low" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_VOLUME), + new String[] + { + "kind", "element", + "name", "volume" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_CHANGE1), + new String[] + { + "kind", "element", + "name", "change1" + }); + + addXSDMapping + (getProperty(quoteType, Quote.INTERNAL_QUOTES), + new String[] + { + "kind", "element", + "name", "quotes" + }); + + } + +} //SimpleFactory -- cgit v1.2.3