[openrtm-commit:01199] r508 - branches/work_ForRTMSafety/rtmtools/jp.go.aist.rtm.toolscommon/src/jp/go/aist/rtm/toolscommon/model/component/impl
openrtm @ openrtm.org
openrtm @ openrtm.org
2014年 1月 30日 (木) 01:38:46 JST
Author: win-ei
Date: 2014-01-30 01:38:46 +0900 (Thu, 30 Jan 2014)
New Revision: 508
Modified:
branches/work_ForRTMSafety/rtmtools/jp.go.aist.rtm.toolscommon/src/jp/go/aist/rtm/toolscommon/model/component/impl/ComponentImpl.java
Log:
Deleted processings for debugging.
Modified: branches/work_ForRTMSafety/rtmtools/jp.go.aist.rtm.toolscommon/src/jp/go/aist/rtm/toolscommon/model/component/impl/ComponentImpl.java
===================================================================
--- branches/work_ForRTMSafety/rtmtools/jp.go.aist.rtm.toolscommon/src/jp/go/aist/rtm/toolscommon/model/component/impl/ComponentImpl.java 2014-01-27 09:46:57 UTC (rev 507)
+++ branches/work_ForRTMSafety/rtmtools/jp.go.aist.rtm.toolscommon/src/jp/go/aist/rtm/toolscommon/model/component/impl/ComponentImpl.java 2014-01-29 16:38:46 UTC (rev 508)
@@ -1170,7 +1170,6 @@
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
- System.out.println("eInverseRemove featureID="+featureID);
switch (featureID) {
case ComponentPackage.COMPONENT__CONFIGURATION_SETS:
return ((InternalEList<?>)getConfigurationSets()).basicRemove(otherEnd, msgs);
@@ -1193,8 +1192,6 @@
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
- System.out.println("eGet entry");
- System.out.println("eGet featureID="+featureID);
switch (featureID) {
case ComponentPackage.COMPONENT__CONFIGURATION_SETS:
return getConfigurationSets();
@@ -1245,10 +1242,8 @@
case ComponentPackage.COMPONENT__REQUIRED:
return isRequired() ? Boolean.TRUE : Boolean.FALSE;
case ComponentPackage.COMPONENT__LANGUAGE_TYPE:
- System.out.println("eGet language");
return getLanguage();
}
- System.out.println("eGet return");
return super.eGet(featureID, resolve, coreType);
}
@@ -1260,8 +1255,6 @@
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
- System.out.println("eSet entry");
- System.out.println("eSet featureID="+featureID);
switch (featureID) {
case ComponentPackage.COMPONENT__CONFIGURATION_SETS:
getConfigurationSets().clear();
@@ -1326,12 +1319,10 @@
setRequired(((Boolean)newValue).booleanValue());
return;
case ComponentPackage.COMPONENT__LANGUAGE_TYPE:
- System.out.println("eSet setLanguage newValue="+(String)newValue);
setLanguage((String)newValue);
return;
}
super.eSet(featureID, newValue);
- System.out.println("eSet return");
}
/**
@@ -1341,8 +1332,6 @@
*/
@Override
public void eUnset(int featureID) {
- System.out.println("eUnset entry");
- System.out.println("eUnset featureID="+featureID);
switch (featureID) {
case ComponentPackage.COMPONENT__CONFIGURATION_SETS:
getConfigurationSets().clear();
@@ -1402,12 +1391,10 @@
setRequired(REQUIRED_EDEFAULT);
return;
case ComponentPackage.COMPONENT__LANGUAGE_TYPE:
- //System.out.println("eUnSet setLanguage newValue="+(String)newValue);
setLanguage(LANGUAGE_TYPE_EDEFAULT);
return;
}
super.eUnset(featureID);
- System.out.println("eUnset return");
}
/**
@@ -1417,8 +1404,6 @@
*/
@Override
public boolean eIsSet(int featureID) {
- System.out.println("eIsset entry");
- System.out.println("eIsset featureID="+featureID);
switch (featureID) {
case ComponentPackage.COMPONENT__CONFIGURATION_SETS:
return configurationSets != null && !configurationSets.isEmpty();
@@ -1467,10 +1452,8 @@
case ComponentPackage.COMPONENT__REQUIRED:
return required != REQUIRED_EDEFAULT;
case ComponentPackage.COMPONENT__LANGUAGE_TYPE:
- System.out.println("eIsset language");
return LANGUAGE_TYPE_EDEFAULT == null ? languageType != null : !LANGUAGE_TYPE_EDEFAULT.equals(languageType);
}
- System.out.println("eIsset return");
return super.eIsSet(featureID);
}
@@ -1481,7 +1464,6 @@
*/
@Override
public String toString() {
- System.out.println("toString entry");
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
@@ -1508,7 +1490,6 @@
result.append(", required: ");
result.append(required);
result.append(')');
- System.out.println("toString return");
return result.toString();
}
More information about the openrtm-commit
mailing list