method
stringlengths 13
441k
| clean_method
stringlengths 7
313k
| doc
stringlengths 17
17.3k
| comment
stringlengths 3
1.42k
| method_name
stringlengths 1
273
| extra
dict | imports
list | imports_info
stringlengths 19
34.8k
| cluster_imports_info
stringlengths 15
3.66k
| libraries
list | libraries_info
stringlengths 6
661
| id
int64 0
2.92M
|
|---|---|---|---|---|---|---|---|---|---|---|---|
private SVGElement makeUnitUse(final Unit u, final Province province,
final boolean isDislodged) {
// determine symbol ID
String symbolID;
if (u.getType() == Type.FLEET) {
symbolID = isDislodged ? SYMBOL_DISLODGED_FLEET : SYMBOL_FLEET;
} else if (u.getType() == Type.ARMY) {
symbolID = isDislodged ? SYMBOL_DISLODGED_ARMY : SYMBOL_ARMY;
} else if (u.getType() == Type.WING) {
symbolID = isDislodged ? SYMBOL_DISLODGED_WING : SYMBOL_WING;
} else {
throw new IllegalArgumentException(
"undefined or unknown unit type");
}
// get symbol size data
final SymbolSize symbolSize = mapMeta.getSymbolSize(symbolID);
assert symbolSize != null;
// get the rectangle coordinates
final Coast coast = u.getCoast();
final Point2D.Float pos = isDislodged ? mapMeta
.getDislodgedUnitPt(province, coast) : mapMeta
.getUnitPt(province, coast);
final float x = pos.x;
final float y = pos.y;
return SVGUtils.createUseElement(doc, symbolID, null,
getUnitCSSClass(u.getPower()), x, y, symbolSize);
}// makeUnitUse()
|
SVGElement function(final Unit u, final Province province, final boolean isDislodged) { String symbolID; if (u.getType() == Type.FLEET) { symbolID = isDislodged ? SYMBOL_DISLODGED_FLEET : SYMBOL_FLEET; } else if (u.getType() == Type.ARMY) { symbolID = isDislodged ? SYMBOL_DISLODGED_ARMY : SYMBOL_ARMY; } else if (u.getType() == Type.WING) { symbolID = isDislodged ? SYMBOL_DISLODGED_WING : SYMBOL_WING; } else { throw new IllegalArgumentException( STR); } final SymbolSize symbolSize = mapMeta.getSymbolSize(symbolID); assert symbolSize != null; final Coast coast = u.getCoast(); final Point2D.Float pos = isDislodged ? mapMeta .getDislodgedUnitPt(province, coast) : mapMeta .getUnitPt(province, coast); final float x = pos.x; final float y = pos.y; return SVGUtils.createUseElement(doc, symbolID, null, getUnitCSSClass(u.getPower()), x, y, symbolSize); }
|
/**
* Creates a Unit of the given type / owner color, via a <use> symbol, in the right place
*/
|
Creates a Unit of the given type / owner color, via a symbol, in the right place
|
makeUnitUse
|
{
"repo_name": "takaki/jdip",
"path": "src/main/java/dip/gui/map/DefaultMapRenderer2.java",
"license": "gpl-2.0",
"size": 57087
}
|
[
"java.awt.geom.Point2D",
"org.w3c.dom.svg.SVGElement"
] |
import java.awt.geom.Point2D; import org.w3c.dom.svg.SVGElement;
|
import java.awt.geom.*; import org.w3c.dom.svg.*;
|
[
"java.awt",
"org.w3c.dom"
] |
java.awt; org.w3c.dom;
| 2,063,911
|
// SYSTEM
public static String database(Connection conn) throws HsqlException {
return null;
}
|
static String function(Connection conn) throws HsqlException { return null; }
|
/**
* Returns the name of the database corresponding to this connection.
*
* @param conn the connection for which to retrieve the database name
* @return the name of the database for the given connection
* @throws HsqlException if a database access error occurs
*/
|
Returns the name of the database corresponding to this connection
|
database
|
{
"repo_name": "simeshev/parabuild-ci",
"path": "3rdparty/hsqldb_1_8_1_2/src/org/hsqldb/Library.java",
"license": "lgpl-3.0",
"size": 79684
}
|
[
"java.sql.Connection"
] |
import java.sql.Connection;
|
import java.sql.*;
|
[
"java.sql"
] |
java.sql;
| 1,916,203
|
private boolean fileChanged(File element) {
Map<File, Long> bsm = BundleInitThread.getBundleSizeMap();
if (!bsm.containsKey(element))
return true;
if (bsm.get(element) != element.length())
return true;
return false;
}
|
boolean function(File element) { Map<File, Long> bsm = BundleInitThread.getBundleSizeMap(); if (!bsm.containsKey(element)) return true; if (bsm.get(element) != element.length()) return true; return false; }
|
/**
* Compares file on filesystem to internal state of file to determine if they are different.
*
* @param element
* @return
*/
|
Compares file on filesystem to internal state of file to determine if they are different
|
fileChanged
|
{
"repo_name": "kgilmer/knapsack",
"path": "org/knapsack/init/InstallBundleFunction.java",
"license": "apache-2.0",
"size": 4057
}
|
[
"java.io.File",
"java.util.Map"
] |
import java.io.File; import java.util.Map;
|
import java.io.*; import java.util.*;
|
[
"java.io",
"java.util"
] |
java.io; java.util;
| 514,399
|
public SpdyStream newStream(List<Header> requestHeaders, boolean out, boolean in)
throws IOException {
return newStream(0, requestHeaders, out, in);
}
|
SpdyStream function(List<Header> requestHeaders, boolean out, boolean in) throws IOException { return newStream(0, requestHeaders, out, in); }
|
/**
* Returns a new locally-initiated stream.
*
* @param out true to create an output stream that we can use to send data to the remote peer.
* Corresponds to {@code FLAG_FIN}.
* @param in true to create an input stream that the remote peer can use to send data to us.
* Corresponds to {@code FLAG_UNIDIRECTIONAL}.
*/
|
Returns a new locally-initiated stream
|
newStream
|
{
"repo_name": "10045125/okhttp",
"path": "okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java",
"license": "apache-2.0",
"size": 29987
}
|
[
"java.io.IOException",
"java.util.List"
] |
import java.io.IOException; import java.util.List;
|
import java.io.*; import java.util.*;
|
[
"java.io",
"java.util"
] |
java.io; java.util;
| 2,035,662
|
private static boolean isXLargeTablet(Context context) {
return (context.getResources().getConfiguration().screenLayout
& Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_XLARGE;
}
|
static boolean function(Context context) { return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_XLARGE; }
|
/**
* Helper method to determine if the device has an extra-large screen. For
* example, 10" tablets are extra-large.
*/
|
Helper method to determine if the device has an extra-large screen. For example, 10" tablets are extra-large
|
isXLargeTablet
|
{
"repo_name": "Ruaaaaaaaaaaaaaaaaaa/newZhiHu",
"path": "app/src/main/java/com/wmj/newzhihu/activity/SettingsActivity.java",
"license": "apache-2.0",
"size": 11892
}
|
[
"android.content.Context",
"android.content.res.Configuration"
] |
import android.content.Context; import android.content.res.Configuration;
|
import android.content.*; import android.content.res.*;
|
[
"android.content"
] |
android.content;
| 588,615
|
if (this.coreConfigDao.findOneByPropertyClass(UserWelcomeNotificationsEnabled.class).getProperty().getRawValue().equalsIgnoreCase("true")) {
final String applicationName = this.applicationKernel.getConfig("application.name", "My Application");
final String webServiceUrl = this.coreConfigDao.findOneByPropertyClass(WebServiceUrl.class).getProperty().getRawValue();
final String[] recipients = new String[1];
recipients[0] = user.getEmail();
Boolean applicationNameContainsApplicationKeyWord = (applicationName.indexOf("Application")>0?true:false);
String messageContent = "Hi " + user.getFirstname() + ",<br><br>"
+ "welcome to the " + applicationName + " " + (applicationNameContainsApplicationKeyWord?"":"Application") + "! "
+ "This email is supposed to inform you that you now have a user profile within the "
+ applicationName + (applicationNameContainsApplicationKeyWord?". ":" Application. ")
+ "The default language for new user accounts is set to US American English. You can change the language and a "
+ "couple of other settings within your personal user profile to better customize your expirience.<br><br><br>"
+ "You can reach this Application using the following url:<br>"
+ "<a href='" + webServiceUrl + "'>" + webServiceUrl + "</a>";
JmsEmailMessage mail = new JmsEmailMessage();
mail.setDirectRecipients(recipients);
mail.setSubject("Welcome to the " + applicationName + (applicationNameContainsApplicationKeyWord?"":" Application"));
mail.setMessageContent(messageContent);
this.jmsMessageSender.send(jmsQueueName, mail);
}
}
|
if (this.coreConfigDao.findOneByPropertyClass(UserWelcomeNotificationsEnabled.class).getProperty().getRawValue().equalsIgnoreCase("true")) { final String applicationName = this.applicationKernel.getConfig(STR, STR); final String webServiceUrl = this.coreConfigDao.findOneByPropertyClass(WebServiceUrl.class).getProperty().getRawValue(); final String[] recipients = new String[1]; recipients[0] = user.getEmail(); Boolean applicationNameContainsApplicationKeyWord = (applicationName.indexOf(STR)>0?true:false); String messageContent = STR + user.getFirstname() + STR + STR + applicationName + " " + (applicationNameContainsApplicationKeyWord?"":STR) + "! STRThis email is supposed to inform you that you now have a user profile within the STR. ":" Application. STRThe default language for new user accounts is set to US American English. You can change the language and a STRcouple of other settings within your personal user profile to better customize your expirience.<br><br><br>STRYou can reach this Application using the following url:<br>STR<a href='STR'>STR</a>STRWelcome to the STR":" Application")); mail.setMessageContent(messageContent); this.jmsMessageSender.send(jmsQueueName, mail); } }
|
/**
* Sends a welcome email to the specified user. This method is usually invoked after
* a new user account has been created.
*
* @param user AuthUser JPA Entity instance
* @see de.dml.application.persistence.core.entity.AuthUser
*/
|
Sends a welcome email to the specified user. This method is usually invoked after a new user account has been created
|
sendWelcomeEmail
|
{
"repo_name": "ssmits/DML",
"path": "src/main/java/de/dml/application/mail/EmailNotificationService.java",
"license": "gpl-2.0",
"size": 3017
}
|
[
"de.dml.application.kernel.configSettings.WebServiceUrl",
"de.dml.application.mail.configSettings.UserWelcomeNotificationsEnabled"
] |
import de.dml.application.kernel.configSettings.WebServiceUrl; import de.dml.application.mail.configSettings.UserWelcomeNotificationsEnabled;
|
import de.dml.application.kernel.*; import de.dml.application.mail.*;
|
[
"de.dml.application"
] |
de.dml.application;
| 446,107
|
private JPanel getReportSetupPanel() {
if (reportSetupPanel == null) {
reportSetupPanel = new JPanel();
reportSetupPanel.setBorder(new LineBorder(new Color(0, 0, 0)));
GridBagLayout layout = new GridBagLayout();
layout.columnWidths = new int[] { 0, 0, 0 };
layout.rowHeights = new int[] { 0, 0 };
layout.columnWeights = new double[] { 0.0, Double.MIN_VALUE, 0.0 };
layout.rowWeights = new double[] { 0, 0 };
reportSetupPanel.setLayout(layout);
GridBagConstraints adapterLabelGbc = new GridBagConstraints();
adapterLabelGbc.insets = new Insets(5, 5, 5, 5);
adapterLabelGbc.anchor = GridBagConstraints.EAST;
adapterLabelGbc.gridx = 0;
adapterLabelGbc.gridy = 0;
reportSetupPanel.add(getAdapterLabel(), adapterLabelGbc);
GridBagConstraints comboBoxGbc = new GridBagConstraints();
comboBoxGbc.insets = new Insets(5, 0, 5, 5);
comboBoxGbc.anchor = GridBagConstraints.WEST;
comboBoxGbc.gridx = 1;
comboBoxGbc.gridy = 0;
reportSetupPanel.add(getAdapterComboBox(), comboBoxGbc);
GridBagConstraints fileLabelGbc = new GridBagConstraints();
fileLabelGbc.insets = new Insets(0, 5, 5, 5);
fileLabelGbc.anchor = GridBagConstraints.EAST;
fileLabelGbc.gridx = 0;
fileLabelGbc.gridy = 1;
reportSetupPanel.add(getSelectFileLabel(), fileLabelGbc);
GridBagConstraints fileButtonGbc = new GridBagConstraints();
fileButtonGbc.insets = new Insets(0, 0, 5, 5);
fileButtonGbc.anchor = GridBagConstraints.WEST;
fileButtonGbc.gridx = 1;
fileButtonGbc.gridy = 1;
reportSetupPanel.add(getSelectFileButton(), fileButtonGbc);
GridBagConstraints helpButtonGbc = new GridBagConstraints();
helpButtonGbc.insets = new Insets(5, 0, 5, 5);
helpButtonGbc.anchor = GridBagConstraints.WEST;
helpButtonGbc.gridx = 2;
helpButtonGbc.gridy = 0;
helpButtonGbc.gridheight = 2;
helpButtonGbc.fill = GridBagConstraints.BOTH;
reportSetupPanel.add(getHelpButton(), helpButtonGbc);
}
return reportSetupPanel;
}
|
JPanel function() { if (reportSetupPanel == null) { reportSetupPanel = new JPanel(); reportSetupPanel.setBorder(new LineBorder(new Color(0, 0, 0))); GridBagLayout layout = new GridBagLayout(); layout.columnWidths = new int[] { 0, 0, 0 }; layout.rowHeights = new int[] { 0, 0 }; layout.columnWeights = new double[] { 0.0, Double.MIN_VALUE, 0.0 }; layout.rowWeights = new double[] { 0, 0 }; reportSetupPanel.setLayout(layout); GridBagConstraints adapterLabelGbc = new GridBagConstraints(); adapterLabelGbc.insets = new Insets(5, 5, 5, 5); adapterLabelGbc.anchor = GridBagConstraints.EAST; adapterLabelGbc.gridx = 0; adapterLabelGbc.gridy = 0; reportSetupPanel.add(getAdapterLabel(), adapterLabelGbc); GridBagConstraints comboBoxGbc = new GridBagConstraints(); comboBoxGbc.insets = new Insets(5, 0, 5, 5); comboBoxGbc.anchor = GridBagConstraints.WEST; comboBoxGbc.gridx = 1; comboBoxGbc.gridy = 0; reportSetupPanel.add(getAdapterComboBox(), comboBoxGbc); GridBagConstraints fileLabelGbc = new GridBagConstraints(); fileLabelGbc.insets = new Insets(0, 5, 5, 5); fileLabelGbc.anchor = GridBagConstraints.EAST; fileLabelGbc.gridx = 0; fileLabelGbc.gridy = 1; reportSetupPanel.add(getSelectFileLabel(), fileLabelGbc); GridBagConstraints fileButtonGbc = new GridBagConstraints(); fileButtonGbc.insets = new Insets(0, 0, 5, 5); fileButtonGbc.anchor = GridBagConstraints.WEST; fileButtonGbc.gridx = 1; fileButtonGbc.gridy = 1; reportSetupPanel.add(getSelectFileButton(), fileButtonGbc); GridBagConstraints helpButtonGbc = new GridBagConstraints(); helpButtonGbc.insets = new Insets(5, 0, 5, 5); helpButtonGbc.anchor = GridBagConstraints.WEST; helpButtonGbc.gridx = 2; helpButtonGbc.gridy = 0; helpButtonGbc.gridheight = 2; helpButtonGbc.fill = GridBagConstraints.BOTH; reportSetupPanel.add(getHelpButton(), helpButtonGbc); } return reportSetupPanel; }
|
/**
* Creates, caches and returns the Panel that contains the controls to setup
* the report
*
* @return JPanel
*/
|
Creates, caches and returns the Panel that contains the controls to setup the report
|
getReportSetupPanel
|
{
"repo_name": "battjt/iumpr",
"path": "src/net/soliddesign/iumpr/ui/UserInterfaceView.java",
"license": "mit",
"size": 31088
}
|
[
"java.awt.Color",
"java.awt.GridBagConstraints",
"java.awt.GridBagLayout",
"java.awt.Insets",
"javax.swing.JPanel",
"javax.swing.border.LineBorder"
] |
import java.awt.Color; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import javax.swing.JPanel; import javax.swing.border.LineBorder;
|
import java.awt.*; import javax.swing.*; import javax.swing.border.*;
|
[
"java.awt",
"javax.swing"
] |
java.awt; javax.swing;
| 376,753
|
@Idempotent
DatanodeInfo[] getDatanodeReport(HdfsConstants.DatanodeReportType type)
throws IOException;
|
DatanodeInfo[] getDatanodeReport(HdfsConstants.DatanodeReportType type) throws IOException;
|
/**
* Get a report on the system's current datanodes.
* One DatanodeInfo object is returned for each DataNode.
* Return live datanodes if type is LIVE; dead datanodes if type is DEAD;
* otherwise all datanodes if type is ALL.
*/
|
Get a report on the system's current datanodes. One DatanodeInfo object is returned for each DataNode. Return live datanodes if type is LIVE; dead datanodes if type is DEAD; otherwise all datanodes if type is ALL
|
getDatanodeReport
|
{
"repo_name": "IBYoung/hadoop",
"path": "hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/ClientProtocol.java",
"license": "apache-2.0",
"size": 57388
}
|
[
"java.io.IOException"
] |
import java.io.IOException;
|
import java.io.*;
|
[
"java.io"
] |
java.io;
| 1,982,459
|
public boolean isAnnotationEnabled(AnnotationKey key)
{
return forbiddenAnnotations == null ||
!forbiddenAnnotations.contains(key);
}
|
boolean function(AnnotationKey key) { return forbiddenAnnotations == null !forbiddenAnnotations.contains(key); }
|
/**
* Is the annotation with key allowed.
* @param key see above.
* @return see above.
*/
|
Is the annotation with key allowed
|
isAnnotationEnabled
|
{
"repo_name": "knabar/openmicroscopy",
"path": "components/insight/SRC/org/openmicroscopy/shoola/util/roi/model/ROIShape.java",
"license": "gpl-2.0",
"size": 10802
}
|
[
"org.openmicroscopy.shoola.util.roi.model.annotation.AnnotationKey"
] |
import org.openmicroscopy.shoola.util.roi.model.annotation.AnnotationKey;
|
import org.openmicroscopy.shoola.util.roi.model.annotation.*;
|
[
"org.openmicroscopy.shoola"
] |
org.openmicroscopy.shoola;
| 1,916,065
|
public static boolean isBindingConfigToCreate(Item pvItem, String pvBindingConfig) {
return ((pvItem instanceof SwitchItem) && (pvBindingConfig.contains("pushbutton")));
}
|
static boolean function(Item pvItem, String pvBindingConfig) { return ((pvItem instanceof SwitchItem) && (pvBindingConfig.contains(STR))); }
|
/**
* Checks, if this special binding-type matches to the given pvBindingConfig
*
* @param pvItem
* @param pvBindingConfig
* @return boolean
*/
|
Checks, if this special binding-type matches to the given pvBindingConfig
|
isBindingConfigToCreate
|
{
"repo_name": "computergeek1507/openhab",
"path": "bundles/binding/org.openhab.binding.onewire/src/main/java/org/openhab/binding/onewire/internal/deviceproperties/OneWireDevicePropertyPushButtonBindingConfig.java",
"license": "epl-1.0",
"size": 4210
}
|
[
"org.openhab.core.items.Item",
"org.openhab.core.library.items.SwitchItem"
] |
import org.openhab.core.items.Item; import org.openhab.core.library.items.SwitchItem;
|
import org.openhab.core.items.*; import org.openhab.core.library.items.*;
|
[
"org.openhab.core"
] |
org.openhab.core;
| 529,348
|
@Deprecated
int apt_stream_push(AptLibrary.apt_stream stream, Pointer buf, int len);
|
int apt_stream_push(AptLibrary.apt_stream stream, Pointer buf, int len);
|
/**
* push more buffer to handle<br>
* Original signature : <code>int apt_stream_push(apt_stream*, const char*, int)</code><br>
* <i>native declaration : line 95</i><br>
* @deprecated use the safer methods {@link #apt_stream_push(apt.AptLibrary.apt_stream, java.lang.String, int)} and {@link #apt_stream_push(apt.AptLibrary.apt_stream, com.sun.jna.Pointer, int)} instead
*/
|
push more buffer to handle Original signature : <code>int apt_stream_push(apt_stream*, const char*, int)</code> native declaration : line 95
|
apt_stream_push
|
{
"repo_name": "xwjxwj30abc/apt",
"path": "src/main/java/zx/soft/apt/j2c/AptLibrary.java",
"license": "apache-2.0",
"size": 9912
}
|
[
"com.sun.jna.Pointer"
] |
import com.sun.jna.Pointer;
|
import com.sun.jna.*;
|
[
"com.sun.jna"
] |
com.sun.jna;
| 1,414,627
|
@Override
public MergeSpecification findForcedDeletesMerges(SegmentInfos segmentInfos)
throws IOException {
final List<SegmentCommitInfo> segments = segmentInfos.asList();
final int numSegments = segments.size();
if (verbose()) {
message("findForcedDeleteMerges: " + numSegments + " segments");
}
MergeSpecification spec = new MergeSpecification();
int firstSegmentWithDeletions = -1;
IndexWriter w = writer.get();
assert w != null;
for(int i=0;i<numSegments;i++) {
final SegmentCommitInfo info = segmentInfos.info(i);
int delCount = w.numDeletedDocs(info);
if (delCount > 0) {
if (verbose()) {
message(" segment " + info.info.name + " has deletions");
}
if (firstSegmentWithDeletions == -1)
firstSegmentWithDeletions = i;
else if (i - firstSegmentWithDeletions == mergeFactor) {
// We've seen mergeFactor segments in a row with
// deletions, so force a merge now:
if (verbose()) {
message(" add merge " + firstSegmentWithDeletions + " to " + (i-1) + " inclusive");
}
spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, i)));
firstSegmentWithDeletions = i;
}
} else if (firstSegmentWithDeletions != -1) {
// End of a sequence of segments with deletions, so,
// merge those past segments even if it's fewer than
// mergeFactor segments
if (verbose()) {
message(" add merge " + firstSegmentWithDeletions + " to " + (i-1) + " inclusive");
}
spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, i)));
firstSegmentWithDeletions = -1;
}
}
if (firstSegmentWithDeletions != -1) {
if (verbose()) {
message(" add merge " + firstSegmentWithDeletions + " to " + (numSegments-1) + " inclusive");
}
spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, numSegments)));
}
return spec;
}
private static class SegmentInfoAndLevel implements Comparable<SegmentInfoAndLevel> {
SegmentCommitInfo info;
float level;
int index;
public SegmentInfoAndLevel(SegmentCommitInfo info, float level, int index) {
this.info = info;
this.level = level;
this.index = index;
}
|
MergeSpecification function(SegmentInfos segmentInfos) throws IOException { final List<SegmentCommitInfo> segments = segmentInfos.asList(); final int numSegments = segments.size(); if (verbose()) { message(STR + numSegments + STR); } MergeSpecification spec = new MergeSpecification(); int firstSegmentWithDeletions = -1; IndexWriter w = writer.get(); assert w != null; for(int i=0;i<numSegments;i++) { final SegmentCommitInfo info = segmentInfos.info(i); int delCount = w.numDeletedDocs(info); if (delCount > 0) { if (verbose()) { message(STR + info.info.name + STR); } if (firstSegmentWithDeletions == -1) firstSegmentWithDeletions = i; else if (i - firstSegmentWithDeletions == mergeFactor) { if (verbose()) { message(STR + firstSegmentWithDeletions + STR + (i-1) + STR); } spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, i))); firstSegmentWithDeletions = i; } } else if (firstSegmentWithDeletions != -1) { if (verbose()) { message(STR + firstSegmentWithDeletions + STR + (i-1) + STR); } spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, i))); firstSegmentWithDeletions = -1; } } if (firstSegmentWithDeletions != -1) { if (verbose()) { message(STR + firstSegmentWithDeletions + STR + (numSegments-1) + STR); } spec.add(new OneMerge(segments.subList(firstSegmentWithDeletions, numSegments))); } return spec; } private static class SegmentInfoAndLevel implements Comparable<SegmentInfoAndLevel> { SegmentCommitInfo info; float level; int index; public SegmentInfoAndLevel(SegmentCommitInfo info, float level, int index) { this.info = info; this.level = level; this.index = index; }
|
/**
* Finds merges necessary to force-merge all deletes from the
* index. We simply merge adjacent segments that have
* deletes, up to mergeFactor at a time.
*/
|
Finds merges necessary to force-merge all deletes from the index. We simply merge adjacent segments that have deletes, up to mergeFactor at a time
|
findForcedDeletesMerges
|
{
"repo_name": "yintaoxue/read-open-source-code",
"path": "solr-4.7.2/src/org/apache/lucene/index/LogMergePolicy.java",
"license": "apache-2.0",
"size": 23547
}
|
[
"java.io.IOException",
"java.util.List"
] |
import java.io.IOException; import java.util.List;
|
import java.io.*; import java.util.*;
|
[
"java.io",
"java.util"
] |
java.io; java.util;
| 2,804,762
|
static OutputStream wrapPredictor(OutputStream out, COSDictionary decodeParams)
{
int predictor = decodeParams.getInt(COSName.PREDICTOR);
if (predictor > 1)
{
int colors = Math.min(decodeParams.getInt(COSName.COLORS, 1), 32);
int bitsPerPixel = decodeParams.getInt(COSName.BITS_PER_COMPONENT, 8);
int columns = decodeParams.getInt(COSName.COLUMNS, 1);
return new PredictorOutputStream(out, predictor, colors, bitsPerPixel, columns);
}
else
{
return out;
}
}
private static final class PredictorOutputStream extends FilterOutputStream
{
// current predictor type
private int predictor;
// image decode parameters
private final int colors;
private final int bitsPerComponent;
private final int columns;
private final int rowLength;
// PNG predictor (predictor>=10) means every row has a (potentially different)
// predictor value
private final boolean predictorPerRow;
// data buffers
private byte[] currentRow;
private byte[] lastRow;
// amount of data in the current row
private int currentRowData = 0;
// was the per-row predictor value read for the current row being processed
private boolean predictorRead = false;
PredictorOutputStream(OutputStream out, int predictor, int colors, int bitsPerComponent, int columns)
{
super(out);
this.predictor = predictor;
this.colors = colors;
this.bitsPerComponent = bitsPerComponent;
this.columns = columns;
this.rowLength = calculateRowLength(colors, bitsPerComponent, columns);
this.predictorPerRow = predictor >= 10;
currentRow = new byte[rowLength];
lastRow = new byte[rowLength];
}
|
static OutputStream wrapPredictor(OutputStream out, COSDictionary decodeParams) { int predictor = decodeParams.getInt(COSName.PREDICTOR); if (predictor > 1) { int colors = Math.min(decodeParams.getInt(COSName.COLORS, 1), 32); int bitsPerPixel = decodeParams.getInt(COSName.BITS_PER_COMPONENT, 8); int columns = decodeParams.getInt(COSName.COLUMNS, 1); return new PredictorOutputStream(out, predictor, colors, bitsPerPixel, columns); } else { return out; } } private static final class PredictorOutputStream extends FilterOutputStream { private int predictor; private final int colors; private final int bitsPerComponent; private final int columns; private final int rowLength; private final boolean predictorPerRow; private byte[] currentRow; private byte[] lastRow; private int currentRowData = 0; private boolean predictorRead = false; PredictorOutputStream(OutputStream out, int predictor, int colors, int bitsPerComponent, int columns) { super(out); this.predictor = predictor; this.colors = colors; this.bitsPerComponent = bitsPerComponent; this.columns = columns; this.rowLength = calculateRowLength(colors, bitsPerComponent, columns); this.predictorPerRow = predictor >= 10; currentRow = new byte[rowLength]; lastRow = new byte[rowLength]; }
|
/**
* Wraps and <code>OutputStream</code> in a predictor decoding stream as necessary.
* If no predictor is specified by the parameters, the original stream is returned as is.
*
* @param out The stream to which decoded data should be written
* @param decodeParams Decode parameters for the stream
* @return An <code>OutputStream</code> is returned, which will write decoded data
* into the given stream. If no predictor is specified, the original stream is returned.
*/
|
Wraps and <code>OutputStream</code> in a predictor decoding stream as necessary. If no predictor is specified by the parameters, the original stream is returned as is
|
wrapPredictor
|
{
"repo_name": "kalaspuffar/pdfbox",
"path": "pdfbox/src/main/java/org/apache/pdfbox/filter/Predictor.java",
"license": "apache-2.0",
"size": 14431
}
|
[
"java.io.FilterOutputStream",
"java.io.OutputStream",
"org.apache.pdfbox.cos.COSDictionary",
"org.apache.pdfbox.cos.COSName"
] |
import java.io.FilterOutputStream; import java.io.OutputStream; import org.apache.pdfbox.cos.COSDictionary; import org.apache.pdfbox.cos.COSName;
|
import java.io.*; import org.apache.pdfbox.cos.*;
|
[
"java.io",
"org.apache.pdfbox"
] |
java.io; org.apache.pdfbox;
| 338,945
|
public synchronized void login(CharSequence username, String password) throws XMPPException, SmackException,
IOException {
login(username, password, config.getResource());
}
|
synchronized void function(CharSequence username, String password) throws XMPPException, SmackException, IOException { login(username, password, config.getResource()); }
|
/**
* Same as {@link #login(CharSequence, String, String)}, but takes the resource from the connection
* configuration.
*
* @param username
* @param password
* @throws XMPPException
* @throws SmackException
* @throws IOException
* @see #login
*/
|
Same as <code>#login(CharSequence, String, String)</code>, but takes the resource from the connection configuration
|
login
|
{
"repo_name": "TTalkIM/Smack",
"path": "smack-core/src/main/java/org/jivesoftware/smack/AbstractXMPPConnection.java",
"license": "apache-2.0",
"size": 63099
}
|
[
"java.io.IOException"
] |
import java.io.IOException;
|
import java.io.*;
|
[
"java.io"
] |
java.io;
| 53,961
|
@Override
protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
super.collectNewChildDescriptors(newChildDescriptors, object);
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_AddressLine(),
XALFactory.eINSTANCE.createAddressLineType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_LargeMailUserName(),
XALFactory.eINSTANCE.createLargeMailUserNameType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_LargeMailUserIdentifier(),
XALFactory.eINSTANCE.createLargeMailUserIdentifierType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_BuildingName(),
XALFactory.eINSTANCE.createBuildingNameType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Department(),
XALFactory.eINSTANCE.createDepartmentType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_PostBox(),
XALFactory.eINSTANCE.createPostBoxType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Thoroughfare(),
XALFactory.eINSTANCE.createThoroughfareType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_PostalCode(),
XALFactory.eINSTANCE.createPostalCodeType()));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING,
BuildingFactory.eINSTANCE.createBuildingType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_FURNITURE,
BuildingFactory.eINSTANCE.createBuildingFurnitureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_INSTALLATION,
BuildingFactory.eINSTANCE.createBuildingInstallationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_PART,
BuildingFactory.eINSTANCE.createBuildingPartType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__CEILING_SURFACE,
BuildingFactory.eINSTANCE.createCeilingSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__CLOSURE_SURFACE,
BuildingFactory.eINSTANCE.createClosureSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__DOOR,
BuildingFactory.eINSTANCE.createDoorType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__FLOOR_SURFACE,
BuildingFactory.eINSTANCE.createFloorSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__GROUND_SURFACE,
BuildingFactory.eINSTANCE.createGroundSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__INT_BUILDING_INSTALLATION,
BuildingFactory.eINSTANCE.createIntBuildingInstallationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__INTERIOR_WALL_SURFACE,
BuildingFactory.eINSTANCE.createInteriorWallSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__ROOF_SURFACE,
BuildingFactory.eINSTANCE.createRoofSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__ROOM,
BuildingFactory.eINSTANCE.createRoomType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__WALL_SURFACE,
BuildingFactory.eINSTANCE.createWallSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(BuildingPackage.Literals.DOCUMENT_ROOT__WINDOW,
BuildingFactory.eINSTANCE.createWindowType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CitygmlPackage.Literals.DOCUMENT_ROOT__ADDRESS,
CitygmlFactory.eINSTANCE.createAddressType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_MODEL,
CitygmlFactory.eINSTANCE.createCityModelType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_MEMBER,
GmlFactory.eINSTANCE.createFeaturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_MEMBER,
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CitygmlPackage.Literals.DOCUMENT_ROOT__IMPLICIT_GEOMETRY,
CitygmlFactory.eINSTANCE.createImplicitGeometryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createDefinitionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createUnitDefinitionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createBaseUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createCartesianCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createCompoundCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createConcatenatedOperationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createConventionalUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createConversionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createCoordinateSystemAxisType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createCylindricalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createDefinitionProxyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createDerivedCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createDerivedUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createDictionaryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createEllipsoidalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createEllipsoidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createEngineeringCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createEngineeringDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createGeocentricCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createGeodeticDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createGeographicCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createImageCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createImageDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createLinearCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createObliqueCartesianCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createOperationMethodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createOperationParameterGroupType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createOperationParameterType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createPassThroughOperationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createPolarCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createPrimeMeridianType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createProjectedCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createSphericalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTemporalCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTemporalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTemporalDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeCalendarEraType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeCalendarType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeClockType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeCoordinateSystemType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeOrdinalEraType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTimeOrdinalReferenceSystemType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createTransformationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createUserDefinedCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createVerticalCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createVerticalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Definition(),
GmlFactory.eINSTANCE.createVerticalDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AbsoluteExternalPositionalAccuracy(),
GmlFactory.eINSTANCE.createAbsoluteExternalPositionalAccuracyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AbstractGeneralOperationParameterRef(),
GmlFactory.eINSTANCE.createAbstractGeneralOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AffinePlacement(),
GmlFactory.eINSTANCE.createAffinePlacementType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Angle(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureMember(),
GmlFactory.eINSTANCE.createFeaturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureMember(),
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Arc(),
GmlFactory.eINSTANCE.createArcType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Arc(),
GmlFactory.eINSTANCE.createCircleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcString(),
GmlFactory.eINSTANCE.createArcStringType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcString(),
GmlFactory.eINSTANCE.createArcType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcString(),
GmlFactory.eINSTANCE.createCircleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcByBulge(),
GmlFactory.eINSTANCE.createArcByBulgeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcStringByBulge(),
GmlFactory.eINSTANCE.createArcStringByBulgeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcStringByBulge(),
GmlFactory.eINSTANCE.createArcByBulgeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcByCenterPoint(),
GmlFactory.eINSTANCE.createArcByCenterPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ArcByCenterPoint(),
GmlFactory.eINSTANCE.createCircleByCenterPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Array(),
GmlFactory.eINSTANCE.createArrayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_AxisID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Bag(),
GmlFactory.eINSTANCE.createBagType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BaseCRS(),
GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BaseCurve(),
GmlFactory.eINSTANCE.createCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BaseSurface(),
GmlFactory.eINSTANCE.createSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BaseUnit(),
GmlFactory.eINSTANCE.createBaseUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(),
GmlFactory.eINSTANCE.createUnitDefinitionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(),
GmlFactory.eINSTANCE.createBaseUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(),
GmlFactory.eINSTANCE.createConventionalUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(),
GmlFactory.eINSTANCE.createDerivedUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Bezier(),
GmlFactory.eINSTANCE.createBezierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BSpline(),
GmlFactory.eINSTANCE.createBSplineType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BSpline(),
GmlFactory.eINSTANCE.createBezierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Boolean(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.BOOLEAN, "false"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BooleanList(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getBooleanOrNullList(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BooleanValue(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.BOOLEAN, "false"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BoundedBy(),
GmlFactory.eINSTANCE.createBoundingShapeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BoundingBox(),
GmlFactory.eINSTANCE.createEnvelopeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BoundingBox(),
GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_BoundingPolygon(),
GmlFactory.eINSTANCE.createPolygonType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CartesianCS(),
GmlFactory.eINSTANCE.createCartesianCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CartesianCSRef(),
GmlFactory.eINSTANCE.createCartesianCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Category(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Category(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Category(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Category(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CategoryExtent(),
GmlFactory.eINSTANCE.createCategoryExtentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CategoryList(),
GmlFactory.eINSTANCE.createCodeOrNullListType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CategoryList(),
GmlFactory.eINSTANCE.createCategoryExtentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CenterLineOf(),
GmlFactory.eINSTANCE.createCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CenterOf(),
GmlFactory.eINSTANCE.createPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Circle(),
GmlFactory.eINSTANCE.createCircleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CircleByCenterPoint(),
GmlFactory.eINSTANCE.createCircleByCenterPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Clothoid(),
GmlFactory.eINSTANCE.createClothoidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ColumnIndex(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompassPoint(),
CompassPointEnumeration.N)));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompositeCurve(),
GmlFactory.eINSTANCE.createCompositeCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompositeSolid(),
GmlFactory.eINSTANCE.createCompositeSolidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompositeSurface(),
GmlFactory.eINSTANCE.createCompositeSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompositeValue(),
GmlFactory.eINSTANCE.createCompositeValueType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompositeValue(),
GmlFactory.eINSTANCE.createValueArrayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompoundCRS(),
GmlFactory.eINSTANCE.createCompoundCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CompoundCRSRef(),
GmlFactory.eINSTANCE.createCompoundCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ConcatenatedOperation(),
GmlFactory.eINSTANCE.createConcatenatedOperationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ConcatenatedOperationRef(),
GmlFactory.eINSTANCE.createConcatenatedOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Cone(),
GmlFactory.eINSTANCE.createConeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Container(),
GmlFactory.eINSTANCE.createContainerPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ConventionalUnit(),
GmlFactory.eINSTANCE.createConventionalUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Conversion(),
GmlFactory.eINSTANCE.createConversionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ConversionRef(),
GmlFactory.eINSTANCE.createConversionRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ConversionToPreferredUnit(),
GmlFactory.eINSTANCE.createConversionToPreferredUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Coord(),
GmlFactory.eINSTANCE.createCoordType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Name(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Name(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Name(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Name(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationRef(),
GmlFactory.eINSTANCE.createCoordinateOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateReferenceSystemRef(),
GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Coordinates(),
GmlFactory.eINSTANCE.createCoordinatesType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemAxis(),
GmlFactory.eINSTANCE.createCoordinateSystemAxisType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemAxisRef(),
GmlFactory.eINSTANCE.createCoordinateSystemAxisRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemRef(),
GmlFactory.eINSTANCE.createCoordinateSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Count(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CountExtent(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getCountExtentType(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CountList(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getIntegerOrNullList(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Covariance(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DOUBLE, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CovarianceMatrix(),
GmlFactory.eINSTANCE.createCovarianceMatrixType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CoverageFunction(),
GmlFactory.eINSTANCE.createCoverageFunctionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CrsRef(),
GmlFactory.eINSTANCE.createCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CsID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CsName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CsName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CsName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CsName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CubicSpline(),
GmlFactory.eINSTANCE.createCubicSplineType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Curve1(),
GmlFactory.eINSTANCE.createCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CurveArrayProperty(),
GmlFactory.eINSTANCE.createCurveArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CurveMember(),
GmlFactory.eINSTANCE.createCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CurveMembers(),
GmlFactory.eINSTANCE.createCurveArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CurveProperty(),
GmlFactory.eINSTANCE.createCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Cylinder(),
GmlFactory.eINSTANCE.createCylinderType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CylindricalCS(),
GmlFactory.eINSTANCE.createCylindricalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_CylindricalCSRef(),
GmlFactory.eINSTANCE.createCylindricalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DataBlock(),
GmlFactory.eINSTANCE.createDataBlockType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DataSource(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DatumRef(),
GmlFactory.eINSTANCE.createDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DecimalMinutes(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getDecimalMinutesType(), "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefaultStyle(),
GmlFactory.eINSTANCE.createDefaultStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefinedByConversion(),
GmlFactory.eINSTANCE.createGeneralConversionRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefinitionCollection(),
GmlFactory.eINSTANCE.createDictionaryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefinitionMember(),
GmlFactory.eINSTANCE.createDictionaryEntryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DictionaryEntry(),
GmlFactory.eINSTANCE.createDictionaryEntryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefinitionProxy(),
GmlFactory.eINSTANCE.createDefinitionProxyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DefinitionRef(),
GmlFactory.eINSTANCE.createReferenceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Degrees(),
GmlFactory.eINSTANCE.createDegreesType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DerivationUnitTerm(),
GmlFactory.eINSTANCE.createDerivationUnitTermType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRS(),
GmlFactory.eINSTANCE.createDerivedCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRSRef(),
GmlFactory.eINSTANCE.createDerivedCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRSType(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DerivedUnit(),
GmlFactory.eINSTANCE.createDerivedUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Description(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Dictionary(),
GmlFactory.eINSTANCE.createDictionaryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedEdge(),
GmlFactory.eINSTANCE.createDirectedEdgePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedFace(),
GmlFactory.eINSTANCE.createDirectedFacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedNode(),
GmlFactory.eINSTANCE.createDirectedNodePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservation(),
GmlFactory.eINSTANCE.createDirectedObservationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservation(),
GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Observation(),
GmlFactory.eINSTANCE.createObservationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Observation(),
GmlFactory.eINSTANCE.createDirectedObservationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Observation(),
GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservationAtDistance(),
GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectedTopoSolid(),
GmlFactory.eINSTANCE.createDirectedTopoSolidPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Direction(),
GmlFactory.eINSTANCE.createDirectionPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DirectionVector(),
GmlFactory.eINSTANCE.createDirectionVectorType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DmsAngle(),
GmlFactory.eINSTANCE.createDMSAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DmsAngleValue(),
GmlFactory.eINSTANCE.createDMSAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createDomainSetType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createGridDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createMultiCurveDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createMultiPointDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createMultiSolidDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createMultiSurfaceDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(),
GmlFactory.eINSTANCE.createRectifiedGridDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_DoubleOrNullTupleList(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getDoubleOrNullList(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Duration(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DURATION, null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Edge(),
GmlFactory.eINSTANCE.createEdgeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EdgeOf(),
GmlFactory.eINSTANCE.createCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Ellipsoid(),
GmlFactory.eINSTANCE.createEllipsoidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidalCS(),
GmlFactory.eINSTANCE.createEllipsoidalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidalCSRef(),
GmlFactory.eINSTANCE.createEllipsoidalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidRef(),
GmlFactory.eINSTANCE.createEllipsoidRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EngineeringCRS(),
GmlFactory.eINSTANCE.createEngineeringCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EngineeringCRSRef(),
GmlFactory.eINSTANCE.createEngineeringCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EngineeringDatum(),
GmlFactory.eINSTANCE.createEngineeringDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EngineeringDatumRef(),
GmlFactory.eINSTANCE.createEngineeringDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Envelope(),
GmlFactory.eINSTANCE.createEnvelopeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Envelope(),
GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_EnvelopeWithTimePeriod(),
GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ExtentOf(),
GmlFactory.eINSTANCE.createSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Exterior(),
GmlFactory.eINSTANCE.createAbstractRingPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Face(),
GmlFactory.eINSTANCE.createFaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureCollection1(),
GmlFactory.eINSTANCE.createFeatureCollectionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureCollection1(),
GmlFactory.eINSTANCE.createDynamicFeatureCollectionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureMembers(),
GmlFactory.eINSTANCE.createFeatureArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureProperty(),
GmlFactory.eINSTANCE.createFeaturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureProperty(),
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureStyle(),
GmlFactory.eINSTANCE.createFeatureStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_FeatureStyle1(),
GmlFactory.eINSTANCE.createFeatureStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_File(),
GmlFactory.eINSTANCE.createFileType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeneralConversionRef(),
GmlFactory.eINSTANCE.createGeneralConversionRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeneralTransformationRef(),
GmlFactory.eINSTANCE.createGeneralTransformationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GenericMetaData(),
GmlFactory.eINSTANCE.createGenericMetaDataType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeocentricCRS(),
GmlFactory.eINSTANCE.createGeocentricCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeocentricCRSRef(),
GmlFactory.eINSTANCE.createGeocentricCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Geodesic(),
GmlFactory.eINSTANCE.createGeodesicType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeodesicString(),
GmlFactory.eINSTANCE.createGeodesicStringType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeodesicString(),
GmlFactory.eINSTANCE.createGeodesicType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeodeticDatum(),
GmlFactory.eINSTANCE.createGeodeticDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeodeticDatumRef(),
GmlFactory.eINSTANCE.createGeodeticDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeographicCRS(),
GmlFactory.eINSTANCE.createGeographicCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeographicCRSRef(),
GmlFactory.eINSTANCE.createGeographicCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeometricComplex(),
GmlFactory.eINSTANCE.createGeometricComplexType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeometryMember(),
GmlFactory.eINSTANCE.createGeometryPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeometryMembers(),
GmlFactory.eINSTANCE.createGeometryArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeometryStyle(),
GmlFactory.eINSTANCE.createGeometryStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GeometryStyle1(),
GmlFactory.eINSTANCE.createGeometryStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GraphStyle(),
GmlFactory.eINSTANCE.createGraphStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GraphStyle1(),
GmlFactory.eINSTANCE.createGraphStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GreenwichLongitude(),
GmlFactory.eINSTANCE.createAngleChoiceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Grid(),
GmlFactory.eINSTANCE.createGridType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Grid(),
GmlFactory.eINSTANCE.createRectifiedGridType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GridCoverage(),
GmlFactory.eINSTANCE.createGridCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GridDomain(),
GmlFactory.eINSTANCE.createGridDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GridFunction(),
GmlFactory.eINSTANCE.createGridFunctionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GridFunction(),
GmlFactory.eINSTANCE.createIndexMapType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GroupID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GroupName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GroupName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GroupName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_GroupName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_History(),
GmlFactory.eINSTANCE.createHistoryPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_History(),
GmlFactory.eINSTANCE.createTrackType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ImageCRS(),
GmlFactory.eINSTANCE.createImageCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ImageCRSRef(),
GmlFactory.eINSTANCE.createImageCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ImageDatum(),
GmlFactory.eINSTANCE.createImageDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ImageDatumRef(),
GmlFactory.eINSTANCE.createImageDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IncludesCRS(),
GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IncludesElement(),
GmlFactory.eINSTANCE.createCovarianceElementType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IncludesParameter(),
GmlFactory.eINSTANCE.createAbstractGeneralOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IncludesValue(),
GmlFactory.eINSTANCE.createParameterValueGroupType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IncludesValue(),
GmlFactory.eINSTANCE.createParameterValueType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IndexMap(),
GmlFactory.eINSTANCE.createIndexMapType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IndirectEntry(),
GmlFactory.eINSTANCE.createIndirectEntryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InnerBoundaryIs(),
GmlFactory.eINSTANCE.createAbstractRingPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Interior(),
GmlFactory.eINSTANCE.createAbstractRingPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IntegerValue(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IntegerValueList(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getIntegerList(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Isolated(),
GmlFactory.eINSTANCE.createIsolatedPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_IsSphere(),
IsSphereType.SPHERE)));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LabelStyle(),
GmlFactory.eINSTANCE.createLabelStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LabelStyle1(),
GmlFactory.eINSTANCE.createLabelStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LinearCS(),
GmlFactory.eINSTANCE.createLinearCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LinearCSRef(),
GmlFactory.eINSTANCE.createLinearCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LinearRing(),
GmlFactory.eINSTANCE.createLinearRingType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LineString(),
GmlFactory.eINSTANCE.createLineStringType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LineStringMember(),
GmlFactory.eINSTANCE.createLineStringPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LineStringProperty(),
GmlFactory.eINSTANCE.createLineStringPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LineStringSegment(),
GmlFactory.eINSTANCE.createLineStringSegmentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Location(),
GmlFactory.eINSTANCE.createLocationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Location(),
GmlFactory.eINSTANCE.createPriorityLocationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_LocationString(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MappingRule(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MaximalComplex(),
GmlFactory.eINSTANCE.createTopoComplexMemberType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MaximumOccurs(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Measure(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createBoundarySurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createBuildingInstallationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createBuildingPartPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createIntBuildingInstallationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createInteriorFurniturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createInteriorRoomPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
BuildingFactory.eINSTANCE.createOpeningPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
CitygmlFactory.eINSTANCE.createAddressPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
CitygmlFactory.eINSTANCE.createImplicitRepresentationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
GmlFactory.eINSTANCE.createAssociationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
TransportationFactory.eINSTANCE.createTrafficAreaPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
ReliefFactory.eINSTANCE.createGridPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
ReliefFactory.eINSTANCE.createReliefComponentPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
ReliefFactory.eINSTANCE.createTinPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Member(),
WaterbodyFactory.eINSTANCE.createBoundedByWaterSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Members(),
GmlFactory.eINSTANCE.createArrayAssociationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeridianID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MetaDataProperty(),
GmlFactory.eINSTANCE.createMetaDataPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MethodName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MinimumOccurs(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Minutes(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getArcMinutesType(), "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ModifiedCoordinate(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MovingObjectStatus(),
GmlFactory.eINSTANCE.createMovingObjectStatusType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCenterLineOf(),
GmlFactory.eINSTANCE.createMultiCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCenterOf(),
GmlFactory.eINSTANCE.createMultiPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCoverage(),
GmlFactory.eINSTANCE.createMultiSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCurve(),
GmlFactory.eINSTANCE.createMultiCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveCoverage(),
GmlFactory.eINSTANCE.createMultiCurveCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveDomain(),
GmlFactory.eINSTANCE.createMultiCurveDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveProperty(),
GmlFactory.eINSTANCE.createMultiCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiEdgeOf(),
GmlFactory.eINSTANCE.createMultiCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiExtentOf(),
GmlFactory.eINSTANCE.createMultiSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiGeometry(),
GmlFactory.eINSTANCE.createMultiGeometryType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiGeometryProperty(),
GmlFactory.eINSTANCE.createMultiGeometryPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiLineString(),
GmlFactory.eINSTANCE.createMultiLineStringType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiLocation(),
GmlFactory.eINSTANCE.createMultiPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPoint(),
GmlFactory.eINSTANCE.createMultiPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPointCoverage(),
GmlFactory.eINSTANCE.createMultiPointCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPointDomain(),
GmlFactory.eINSTANCE.createMultiPointDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPointProperty(),
GmlFactory.eINSTANCE.createMultiPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPolygon(),
GmlFactory.eINSTANCE.createMultiPolygonType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiPosition(),
GmlFactory.eINSTANCE.createMultiPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSolid(),
GmlFactory.eINSTANCE.createMultiSolidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidCoverage(),
GmlFactory.eINSTANCE.createMultiSolidCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidDomain(),
GmlFactory.eINSTANCE.createMultiSolidDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidProperty(),
GmlFactory.eINSTANCE.createMultiSolidPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSurface(),
GmlFactory.eINSTANCE.createMultiSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceCoverage(),
GmlFactory.eINSTANCE.createMultiSurfaceCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceDomain(),
GmlFactory.eINSTANCE.createMultiSurfaceDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceProperty(),
GmlFactory.eINSTANCE.createMultiSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Node(),
GmlFactory.eINSTANCE.createNodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Null(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getNullType(), null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ObliqueCartesianCS(),
GmlFactory.eINSTANCE.createObliqueCartesianCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ObliqueCartesianCSRef(),
GmlFactory.eINSTANCE.createObliqueCartesianCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OffsetCurve(),
GmlFactory.eINSTANCE.createOffsetCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationMethod(),
GmlFactory.eINSTANCE.createOperationMethodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationMethodRef(),
GmlFactory.eINSTANCE.createOperationMethodRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationParameter(),
GmlFactory.eINSTANCE.createOperationParameterType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterGroup(),
GmlFactory.eINSTANCE.createOperationParameterGroupType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterGroupRef(),
GmlFactory.eINSTANCE.createOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterRef(),
GmlFactory.eINSTANCE.createOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationRef(),
GmlFactory.eINSTANCE.createOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OperationVersion(),
"")));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OrientableCurve(),
GmlFactory.eINSTANCE.createOrientableCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OrientableSurface(),
GmlFactory.eINSTANCE.createOrientableSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OrientableSurface(),
TexturedsurfaceFactory.eINSTANCE.createTexturedSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Origin(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DATE_TIME, null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_OuterBoundaryIs(),
GmlFactory.eINSTANCE.createAbstractRingPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterValue(),
GmlFactory.eINSTANCE.createParameterValueType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ParameterValueGroup(),
GmlFactory.eINSTANCE.createParameterValueGroupType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PassThroughOperation(),
GmlFactory.eINSTANCE.createPassThroughOperationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PassThroughOperationRef(),
GmlFactory.eINSTANCE.createPassThroughOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Patches(),
GmlFactory.eINSTANCE.createSurfacePatchArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Patches(),
GmlFactory.eINSTANCE.createPolygonPatchArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Patches(),
GmlFactory.eINSTANCE.createTrianglePatchArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PixelInCell(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Point(),
GmlFactory.eINSTANCE.createPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PointArrayProperty(),
GmlFactory.eINSTANCE.createPointArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PointMember(),
GmlFactory.eINSTANCE.createPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PointMembers(),
GmlFactory.eINSTANCE.createPointArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PointProperty(),
GmlFactory.eINSTANCE.createPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PointRep(),
GmlFactory.eINSTANCE.createPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolarCS(),
GmlFactory.eINSTANCE.createPolarCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolarCSRef(),
GmlFactory.eINSTANCE.createPolarCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Polygon(),
GmlFactory.eINSTANCE.createPolygonType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolygonMember(),
GmlFactory.eINSTANCE.createPolygonPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolygonPatch(),
GmlFactory.eINSTANCE.createPolygonPatchType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolygonPatches(),
GmlFactory.eINSTANCE.createPolygonPatchArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolygonProperty(),
GmlFactory.eINSTANCE.createPolygonPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PolyhedralSurface(),
GmlFactory.eINSTANCE.createPolyhedralSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Surface1(),
GmlFactory.eINSTANCE.createSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Surface1(),
GmlFactory.eINSTANCE.createPolyhedralSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Surface1(),
GmlFactory.eINSTANCE.createTriangulatedSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Surface1(),
GmlFactory.eINSTANCE.createTinType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Pos(),
GmlFactory.eINSTANCE.createDirectPositionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Position(),
GmlFactory.eINSTANCE.createPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PosList(),
GmlFactory.eINSTANCE.createDirectPositionListType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PrimeMeridian(),
GmlFactory.eINSTANCE.createPrimeMeridianType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PrimeMeridianRef(),
GmlFactory.eINSTANCE.createPrimeMeridianRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_PriorityLocation(),
GmlFactory.eINSTANCE.createPriorityLocationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ProjectedCRS(),
GmlFactory.eINSTANCE.createProjectedCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ProjectedCRSRef(),
GmlFactory.eINSTANCE.createProjectedCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Quantity(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_QuantityExtent(),
GmlFactory.eINSTANCE.createQuantityExtentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_QuantityList(),
GmlFactory.eINSTANCE.createMeasureOrNullListType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_QuantityList(),
GmlFactory.eINSTANCE.createQuantityExtentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_QuantityType(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RangeParameters(),
GmlFactory.eINSTANCE.createRangeParametersType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RangeSet(),
GmlFactory.eINSTANCE.createRangeSetType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RealizationEpoch(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DATE, null)))); // TODO: ensure this is a valid literal value
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Rectangle(),
GmlFactory.eINSTANCE.createRectangleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RectifiedGrid(),
GmlFactory.eINSTANCE.createRectifiedGridType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RectifiedGridCoverage(),
GmlFactory.eINSTANCE.createRectifiedGridCoverageType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RectifiedGridDomain(),
GmlFactory.eINSTANCE.createRectifiedGridDomainType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ReferenceSystemRef(),
GmlFactory.eINSTANCE.createReferenceSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RelativeInternalPositionalAccuracy(),
GmlFactory.eINSTANCE.createRelativeInternalPositionalAccuracyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Remarks(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Result(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createBoundarySurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createBuildingInstallationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createBuildingPartPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createIntBuildingInstallationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createInteriorFurniturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createInteriorRoomPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
BuildingFactory.eINSTANCE.createOpeningPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
CitygmlFactory.eINSTANCE.createAddressPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
CitygmlFactory.eINSTANCE.createImplicitRepresentationPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
GmlFactory.eINSTANCE.createAssociationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
TransportationFactory.eINSTANCE.createTrafficAreaPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
ReliefFactory.eINSTANCE.createGridPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
ReliefFactory.eINSTANCE.createReliefComponentPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
ReliefFactory.eINSTANCE.createTinPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ResultOf(),
WaterbodyFactory.eINSTANCE.createBoundedByWaterSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Ring1(),
GmlFactory.eINSTANCE.createRingType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RoughConversionToPreferredUnit(),
GmlFactory.eINSTANCE.createConversionToPreferredUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_RowIndex(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Scope(),
"")));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SecondDefiningParameter(),
GmlFactory.eINSTANCE.createSecondDefiningParameterType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Seconds(),
GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getArcSecondsType(), "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Segments(),
GmlFactory.eINSTANCE.createCurveSegmentArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMajorAxis(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SemiMinorAxis(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SingleOperationRef(),
GmlFactory.eINSTANCE.createSingleOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Solid1(),
GmlFactory.eINSTANCE.createSolidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SolidArrayProperty(),
GmlFactory.eINSTANCE.createSolidArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SolidMember(),
GmlFactory.eINSTANCE.createSolidPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SolidMembers(),
GmlFactory.eINSTANCE.createSolidArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SolidProperty(),
GmlFactory.eINSTANCE.createSolidPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SourceCRS(),
GmlFactory.eINSTANCE.createCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SourceDimensions(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Sphere(),
GmlFactory.eINSTANCE.createSphereType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SphericalCS(),
GmlFactory.eINSTANCE.createSphericalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SphericalCSRef(),
GmlFactory.eINSTANCE.createSphericalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SrsID(),
GmlFactory.eINSTANCE.createIdentifierType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SrsName(),
GmlFactory.eINSTANCE.createCodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SrsName(),
GmlFactory.eINSTANCE.createDerivedCRSTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SrsName(),
GmlFactory.eINSTANCE.createPixelInCellType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SrsName(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Status(),
GmlFactory.eINSTANCE.createStringOrRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_StringValue(),
"")));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Style1(),
GmlFactory.eINSTANCE.createStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SubComplex(),
GmlFactory.eINSTANCE.createTopoComplexMemberType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Subject(),
GmlFactory.eINSTANCE.createTargetPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Target(),
GmlFactory.eINSTANCE.createTargetPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SuperComplex(),
GmlFactory.eINSTANCE.createTopoComplexMemberType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SurfaceArrayProperty(),
GmlFactory.eINSTANCE.createSurfaceArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SurfaceMember(),
GmlFactory.eINSTANCE.createSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SurfaceMembers(),
GmlFactory.eINSTANCE.createSurfaceArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_SurfaceProperty(),
GmlFactory.eINSTANCE.createSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Symbol(),
GmlFactory.eINSTANCE.createSymbolType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TargetCRS(),
GmlFactory.eINSTANCE.createCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TargetDimensions(),
XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0"))));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalCRS(),
GmlFactory.eINSTANCE.createTemporalCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalCRSRef(),
GmlFactory.eINSTANCE.createTemporalCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalCS(),
GmlFactory.eINSTANCE.createTemporalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalCSRef(),
GmlFactory.eINSTANCE.createTemporalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalDatum(),
GmlFactory.eINSTANCE.createTemporalDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalDatumRef(),
GmlFactory.eINSTANCE.createTemporalDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TemporalExtent(),
GmlFactory.eINSTANCE.createTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeCalendar(),
GmlFactory.eINSTANCE.createTimeCalendarType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeCalendarEra(),
GmlFactory.eINSTANCE.createTimeCalendarEraType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeClock(),
GmlFactory.eINSTANCE.createTimeClockType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeCoordinateSystem(),
GmlFactory.eINSTANCE.createTimeCoordinateSystemType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeEdge(),
GmlFactory.eINSTANCE.createTimeEdgeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeInstant(),
GmlFactory.eINSTANCE.createTimeInstantType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeInterval(),
GmlFactory.eINSTANCE.createTimeIntervalLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeNode(),
GmlFactory.eINSTANCE.createTimeNodeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeOrdinalEra(),
GmlFactory.eINSTANCE.createTimeOrdinalEraType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeOrdinalReferenceSystem(),
GmlFactory.eINSTANCE.createTimeOrdinalReferenceSystemType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimePeriod(),
GmlFactory.eINSTANCE.createTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimePosition(),
GmlFactory.eINSTANCE.createTimePositionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TimeTopologyComplex(),
GmlFactory.eINSTANCE.createTimeTopologyComplexType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Tin(),
GmlFactory.eINSTANCE.createTinType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TriangulatedSurface(),
GmlFactory.eINSTANCE.createTriangulatedSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TriangulatedSurface(),
GmlFactory.eINSTANCE.createTinType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoComplex(),
GmlFactory.eINSTANCE.createTopoComplexType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoComplexProperty(),
GmlFactory.eINSTANCE.createTopoComplexMemberType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoCurve(),
GmlFactory.eINSTANCE.createTopoCurveType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoCurveProperty(),
GmlFactory.eINSTANCE.createTopoCurvePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopologyStyle(),
GmlFactory.eINSTANCE.createTopologyStylePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopologyStyle1(),
GmlFactory.eINSTANCE.createTopologyStyleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoPoint(),
GmlFactory.eINSTANCE.createTopoPointType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoPointProperty(),
GmlFactory.eINSTANCE.createTopoPointPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoPrimitiveMember(),
GmlFactory.eINSTANCE.createTopoPrimitiveMemberType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoPrimitiveMembers(),
GmlFactory.eINSTANCE.createTopoPrimitiveArrayAssociationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoSolid(),
GmlFactory.eINSTANCE.createTopoSolidType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoSurface(),
GmlFactory.eINSTANCE.createTopoSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoSurfaceProperty(),
GmlFactory.eINSTANCE.createTopoSurfacePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoVolume(),
GmlFactory.eINSTANCE.createTopoVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TopoVolumeProperty(),
GmlFactory.eINSTANCE.createTopoVolumePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Track(),
GmlFactory.eINSTANCE.createTrackType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Transformation(),
GmlFactory.eINSTANCE.createTransformationType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TransformationRef(),
GmlFactory.eINSTANCE.createTransformationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Triangle(),
GmlFactory.eINSTANCE.createTriangleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TrianglePatches(),
GmlFactory.eINSTANCE.createTrianglePatchArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_TupleList(),
GmlFactory.eINSTANCE.createCoordinatesType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitOfMeasure(),
GmlFactory.eINSTANCE.createUnitOfMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitOfMeasure(),
GmlFactory.eINSTANCE.createConversionToPreferredUnitType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UnitOfMeasure(),
GmlFactory.eINSTANCE.createDerivationUnitTermType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UserDefinedCS(),
GmlFactory.eINSTANCE.createUserDefinedCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UserDefinedCSRef(),
GmlFactory.eINSTANCE.createUserDefinedCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesAxis(),
GmlFactory.eINSTANCE.createCoordinateSystemAxisRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesCartesianCS(),
GmlFactory.eINSTANCE.createCartesianCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesCS(),
GmlFactory.eINSTANCE.createCoordinateSystemRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesEllipsoid(),
GmlFactory.eINSTANCE.createEllipsoidRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesEllipsoidalCS(),
GmlFactory.eINSTANCE.createEllipsoidalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesEngineeringDatum(),
GmlFactory.eINSTANCE.createEngineeringDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesGeodeticDatum(),
GmlFactory.eINSTANCE.createGeodeticDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesImageDatum(),
GmlFactory.eINSTANCE.createImageDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesMethod(),
GmlFactory.eINSTANCE.createOperationMethodRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesObliqueCartesianCS(),
GmlFactory.eINSTANCE.createObliqueCartesianCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesOperation(),
GmlFactory.eINSTANCE.createOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesParameter(),
GmlFactory.eINSTANCE.createAbstractGeneralOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesPrimeMeridian(),
GmlFactory.eINSTANCE.createPrimeMeridianRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesSingleOperation(),
GmlFactory.eINSTANCE.createSingleOperationRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesSphericalCS(),
GmlFactory.eINSTANCE.createSphericalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesTemporalCS(),
GmlFactory.eINSTANCE.createTemporalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesTemporalDatum(),
GmlFactory.eINSTANCE.createTemporalDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesValue(),
GmlFactory.eINSTANCE.createParameterValueType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesVerticalCS(),
GmlFactory.eINSTANCE.createVerticalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_UsesVerticalDatum(),
GmlFactory.eINSTANCE.createVerticalDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Using(),
GmlFactory.eINSTANCE.createFeaturePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Using(),
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValidArea(),
GmlFactory.eINSTANCE.createExtentType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValidTime(),
GmlFactory.eINSTANCE.createTimePrimitivePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValidTime(),
GmlFactory.eINSTANCE.createRelatedTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createMeasureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createAngleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createGridLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createScaleType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createSpeedType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createTimeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Value(),
GmlFactory.eINSTANCE.createVolumeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueArray(),
GmlFactory.eINSTANCE.createValueArrayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createValuePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createBooleanPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createCategoryPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createCountPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createQuantityPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponent(),
GmlFactory.eINSTANCE.createScalarValuePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueComponents(),
GmlFactory.eINSTANCE.createValueArrayPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueFile(),
"")));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueList(),
GmlFactory.eINSTANCE.createMeasureListType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueOfParameter(),
GmlFactory.eINSTANCE.createOperationParameterRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createValuePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createBooleanPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createCategoryPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createCountPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createQuantityPropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValueProperty(),
GmlFactory.eINSTANCE.createScalarValuePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_ValuesOfGroup(),
GmlFactory.eINSTANCE.createOperationParameterGroupRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Vector(),
GmlFactory.eINSTANCE.createVectorType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_Version(),
"")));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalCRS(),
GmlFactory.eINSTANCE.createVerticalCRSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalCRSRef(),
GmlFactory.eINSTANCE.createVerticalCRSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalCS(),
GmlFactory.eINSTANCE.createVerticalCSType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalCSRef(),
GmlFactory.eINSTANCE.createVerticalCSRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatum(),
GmlFactory.eINSTANCE.createVerticalDatumType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatumRef(),
GmlFactory.eINSTANCE.createVerticalDatumRefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatumType(),
GmlFactory.eINSTANCE.createVerticalDatumTypeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalExtent(),
GmlFactory.eINSTANCE.createEnvelopeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GmlPackage.eINSTANCE.getDocumentRoot_VerticalExtent(),
GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TexturedsurfacePackage.Literals.DOCUMENT_ROOT__APPEARANCE1,
TexturedsurfaceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TexturedsurfacePackage.Literals.DOCUMENT_ROOT__MATERIAL,
TexturedsurfaceFactory.eINSTANCE.createMaterialType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TexturedsurfacePackage.Literals.DOCUMENT_ROOT__SIMPLE_TEXTURE,
TexturedsurfaceFactory.eINSTANCE.createSimpleTextureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TexturedsurfacePackage.Literals.DOCUMENT_ROOT__TEXTURED_SURFACE,
TexturedsurfaceFactory.eINSTANCE.createTexturedSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__APPEARANCE,
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__APPEARANCE_MEMBER,
AppearanceFactory.eINSTANCE.createAppearancePropertyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__GEOREFERENCED_TEXTURE,
AppearanceFactory.eINSTANCE.createGeoreferencedTextureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__PARAMETERIZED_TEXTURE,
AppearanceFactory.eINSTANCE.createParameterizedTextureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__TEX_COORD_GEN,
AppearanceFactory.eINSTANCE.createTexCoordGenType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__TEX_COORD_LIST,
AppearanceFactory.eINSTANCE.createTexCoordListType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(AppearancePackage.Literals.DOCUMENT_ROOT__X3_DMATERIAL,
AppearanceFactory.eINSTANCE.createX3DMaterialType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createTransportationComplexType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createRailwayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createRoadType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createSquareType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createTrackType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT,
TransportationFactory.eINSTANCE.createTrafficAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__AUXILIARY_TRAFFIC_AREA,
TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__RAILWAY,
TransportationFactory.eINSTANCE.createRailwayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX,
TransportationFactory.eINSTANCE.createTransportationComplexType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX,
TransportationFactory.eINSTANCE.createRailwayType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX,
TransportationFactory.eINSTANCE.createRoadType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX,
TransportationFactory.eINSTANCE.createSquareType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX,
TransportationFactory.eINSTANCE.createTrackType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__ROAD,
TransportationFactory.eINSTANCE.createRoadType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__SQUARE,
TransportationFactory.eINSTANCE.createSquareType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRACK,
TransportationFactory.eINSTANCE.createTrackType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(TransportationPackage.Literals.DOCUMENT_ROOT__TRAFFIC_AREA,
TransportationFactory.eINSTANCE.createTrafficAreaType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__BREAKLINE_RELIEF,
ReliefFactory.eINSTANCE.createBreaklineReliefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__ELEVATION,
GmlFactory.eINSTANCE.createLengthType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__MASS_POINT_RELIEF,
ReliefFactory.eINSTANCE.createMassPointReliefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__RASTER_RELIEF,
ReliefFactory.eINSTANCE.createRasterReliefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__RELIEF_FEATURE,
ReliefFactory.eINSTANCE.createReliefFeatureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(ReliefPackage.Literals.DOCUMENT_ROOT__TIN_RELIEF,
ReliefFactory.eINSTANCE.createTINReliefType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CityfurniturePackage.Literals.DOCUMENT_ROOT__CITY_FURNITURE,
CityfurnitureFactory.eINSTANCE.createCityFurnitureType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(CityobjectgroupPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_GROUP,
CityobjectgroupFactory.eINSTANCE.createCityObjectGroupType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(LandusePackage.Literals.DOCUMENT_ROOT__LAND_USE,
LanduseFactory.eINSTANCE.createLandUseType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(VegetationPackage.Literals.DOCUMENT_ROOT__VEGETATION_OBJECT,
VegetationFactory.eINSTANCE.createPlantCoverType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(VegetationPackage.Literals.DOCUMENT_ROOT__VEGETATION_OBJECT,
VegetationFactory.eINSTANCE.createSolitaryVegetationObjectType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(VegetationPackage.Literals.DOCUMENT_ROOT__PLANT_COVER,
VegetationFactory.eINSTANCE.createPlantCoverType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(VegetationPackage.Literals.DOCUMENT_ROOT__SOLITARY_VEGETATION_OBJECT,
VegetationFactory.eINSTANCE.createSolitaryVegetationObjectType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_OBJECT,
WaterbodyFactory.eINSTANCE.createWaterBodyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_BODY,
WaterbodyFactory.eINSTANCE.createWaterBodyType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_CLOSURE_SURFACE,
WaterbodyFactory.eINSTANCE.createWaterClosureSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_GROUND_SURFACE,
WaterbodyFactory.eINSTANCE.createWaterGroundSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_SURFACE,
WaterbodyFactory.eINSTANCE.createWaterSurfaceType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__DATE_ATTRIBUTE,
GenericsFactory.eINSTANCE.createDateAttributeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__DOUBLE_ATTRIBUTE,
GenericsFactory.eINSTANCE.createDoubleAttributeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__GENERIC_CITY_OBJECT,
GenericsFactory.eINSTANCE.createGenericCityObjectType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__INT_ATTRIBUTE,
GenericsFactory.eINSTANCE.createIntAttributeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__STRING_ATTRIBUTE,
GenericsFactory.eINSTANCE.createStringAttributeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(GenericsPackage.Literals.DOCUMENT_ROOT__URI_ATTRIBUTE,
GenericsFactory.eINSTANCE.createUriAttributeType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE,
LanguageFactory.eINSTANCE.createAnimateType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE_COLOR,
LanguageFactory.eINSTANCE.createAnimateColorType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE_MOTION,
LanguageFactory.eINSTANCE.createAnimateMotionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(Smil20Package.Literals.DOCUMENT_ROOT__SET,
LanguageFactory.eINSTANCE.createSetType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE,
LanguageFactory.eINSTANCE.createAnimateType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE_COLOR,
LanguageFactory.eINSTANCE.createAnimateColorType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE_MOTION,
LanguageFactory.eINSTANCE.createAnimateMotionType())));
newChildDescriptors.add
(createChildParameter
(XALPackage.eINSTANCE.getLargeMailUserType_Any(),
FeatureMapUtil.createEntry
(LanguagePackage.Literals.DOCUMENT_ROOT__SET,
LanguageFactory.eINSTANCE.createSetType())));
}
|
void function(Collection<Object> newChildDescriptors, Object object) { super.collectNewChildDescriptors(newChildDescriptors, object); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_AddressLine(), XALFactory.eINSTANCE.createAddressLineType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_LargeMailUserName(), XALFactory.eINSTANCE.createLargeMailUserNameType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_LargeMailUserIdentifier(), XALFactory.eINSTANCE.createLargeMailUserIdentifierType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_BuildingName(), XALFactory.eINSTANCE.createBuildingNameType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Department(), XALFactory.eINSTANCE.createDepartmentType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_PostBox(), XALFactory.eINSTANCE.createPostBoxType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Thoroughfare(), XALFactory.eINSTANCE.createThoroughfareType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_PostalCode(), XALFactory.eINSTANCE.createPostalCodeType())); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING, BuildingFactory.eINSTANCE.createBuildingType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_FURNITURE, BuildingFactory.eINSTANCE.createBuildingFurnitureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_INSTALLATION, BuildingFactory.eINSTANCE.createBuildingInstallationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__BUILDING_PART, BuildingFactory.eINSTANCE.createBuildingPartType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__CEILING_SURFACE, BuildingFactory.eINSTANCE.createCeilingSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__CLOSURE_SURFACE, BuildingFactory.eINSTANCE.createClosureSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__DOOR, BuildingFactory.eINSTANCE.createDoorType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__FLOOR_SURFACE, BuildingFactory.eINSTANCE.createFloorSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__GROUND_SURFACE, BuildingFactory.eINSTANCE.createGroundSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__INT_BUILDING_INSTALLATION, BuildingFactory.eINSTANCE.createIntBuildingInstallationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__INTERIOR_WALL_SURFACE, BuildingFactory.eINSTANCE.createInteriorWallSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__ROOF_SURFACE, BuildingFactory.eINSTANCE.createRoofSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__ROOM, BuildingFactory.eINSTANCE.createRoomType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__WALL_SURFACE, BuildingFactory.eINSTANCE.createWallSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (BuildingPackage.Literals.DOCUMENT_ROOT__WINDOW, BuildingFactory.eINSTANCE.createWindowType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CitygmlPackage.Literals.DOCUMENT_ROOT__ADDRESS, CitygmlFactory.eINSTANCE.createAddressType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_MODEL, CitygmlFactory.eINSTANCE.createCityModelType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_MEMBER, GmlFactory.eINSTANCE.createFeaturePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CitygmlPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_MEMBER, AppearanceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CitygmlPackage.Literals.DOCUMENT_ROOT__IMPLICIT_GEOMETRY, CitygmlFactory.eINSTANCE.createImplicitGeometryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createDefinitionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createUnitDefinitionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createBaseUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createCartesianCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createCompoundCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createConcatenatedOperationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createConventionalUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createConversionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createCoordinateSystemAxisType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createCylindricalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createDefinitionProxyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createDerivedCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createDerivedUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createDictionaryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createEllipsoidalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createEllipsoidType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createEngineeringCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createEngineeringDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createGeocentricCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createGeodeticDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createGeographicCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createImageCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createImageDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createLinearCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createObliqueCartesianCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createOperationMethodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createOperationParameterGroupType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createOperationParameterType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createPassThroughOperationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createPolarCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createPrimeMeridianType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createProjectedCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createSphericalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTemporalCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTemporalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTemporalDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeCalendarEraType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeCalendarType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeClockType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeCoordinateSystemType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeOrdinalEraType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTimeOrdinalReferenceSystemType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createTransformationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createUserDefinedCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createVerticalCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createVerticalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Definition(), GmlFactory.eINSTANCE.createVerticalDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AbsoluteExternalPositionalAccuracy(), GmlFactory.eINSTANCE.createAbsoluteExternalPositionalAccuracyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AbstractGeneralOperationParameterRef(), GmlFactory.eINSTANCE.createAbstractGeneralOperationParameterRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AffinePlacement(), GmlFactory.eINSTANCE.createAffinePlacementType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AnchorPoint(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createMeasureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createAngleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createGridLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createScaleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createSpeedType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createTimeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Angle(), GmlFactory.eINSTANCE.createVolumeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureMember(), GmlFactory.eINSTANCE.createFeaturePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureMember(), AppearanceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Arc(), GmlFactory.eINSTANCE.createArcType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Arc(), GmlFactory.eINSTANCE.createCircleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcString(), GmlFactory.eINSTANCE.createArcStringType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcString(), GmlFactory.eINSTANCE.createArcType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcString(), GmlFactory.eINSTANCE.createCircleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcByBulge(), GmlFactory.eINSTANCE.createArcByBulgeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcStringByBulge(), GmlFactory.eINSTANCE.createArcStringByBulgeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcStringByBulge(), GmlFactory.eINSTANCE.createArcByBulgeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcByCenterPoint(), GmlFactory.eINSTANCE.createArcByCenterPointType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ArcByCenterPoint(), GmlFactory.eINSTANCE.createCircleByCenterPointType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Array(), GmlFactory.eINSTANCE.createArrayType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisAbbrev(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisDirection(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_AxisID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Bag(), GmlFactory.eINSTANCE.createBagType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BaseCRS(), GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BaseCurve(), GmlFactory.eINSTANCE.createCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BaseSurface(), GmlFactory.eINSTANCE.createSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BaseUnit(), GmlFactory.eINSTANCE.createBaseUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(), GmlFactory.eINSTANCE.createUnitDefinitionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(), GmlFactory.eINSTANCE.createBaseUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(), GmlFactory.eINSTANCE.createConventionalUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_UnitDefinition(), GmlFactory.eINSTANCE.createDerivedUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Bezier(), GmlFactory.eINSTANCE.createBezierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BSpline(), GmlFactory.eINSTANCE.createBSplineType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BSpline(), GmlFactory.eINSTANCE.createBezierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Boolean(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.BOOLEAN, "false")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BooleanList(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getBooleanOrNullList(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BooleanValue(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.BOOLEAN, "false")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BoundedBy(), GmlFactory.eINSTANCE.createBoundingShapeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BoundingBox(), GmlFactory.eINSTANCE.createEnvelopeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BoundingBox(), GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_BoundingPolygon(), GmlFactory.eINSTANCE.createPolygonType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CartesianCS(), GmlFactory.eINSTANCE.createCartesianCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CartesianCSRef(), GmlFactory.eINSTANCE.createCartesianCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CatalogSymbol(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Category(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Category(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Category(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Category(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CategoryExtent(), GmlFactory.eINSTANCE.createCategoryExtentType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CategoryList(), GmlFactory.eINSTANCE.createCodeOrNullListType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CategoryList(), GmlFactory.eINSTANCE.createCategoryExtentType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CenterLineOf(), GmlFactory.eINSTANCE.createCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CenterOf(), GmlFactory.eINSTANCE.createPointPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Circle(), GmlFactory.eINSTANCE.createCircleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CircleByCenterPoint(), GmlFactory.eINSTANCE.createCircleByCenterPointType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Clothoid(), GmlFactory.eINSTANCE.createClothoidType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ColumnIndex(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompassPoint(), CompassPointEnumeration.N))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompositeCurve(), GmlFactory.eINSTANCE.createCompositeCurveType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompositeSolid(), GmlFactory.eINSTANCE.createCompositeSolidType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompositeSurface(), GmlFactory.eINSTANCE.createCompositeSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompositeValue(), GmlFactory.eINSTANCE.createCompositeValueType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompositeValue(), GmlFactory.eINSTANCE.createValueArrayType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompoundCRS(), GmlFactory.eINSTANCE.createCompoundCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CompoundCRSRef(), GmlFactory.eINSTANCE.createCompoundCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ConcatenatedOperation(), GmlFactory.eINSTANCE.createConcatenatedOperationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ConcatenatedOperationRef(), GmlFactory.eINSTANCE.createConcatenatedOperationRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Cone(), GmlFactory.eINSTANCE.createConeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Container(), GmlFactory.eINSTANCE.createContainerPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ConventionalUnit(), GmlFactory.eINSTANCE.createConventionalUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Conversion(), GmlFactory.eINSTANCE.createConversionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ConversionRef(), GmlFactory.eINSTANCE.createConversionRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ConversionToPreferredUnit(), GmlFactory.eINSTANCE.createConversionToPreferredUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Coord(), GmlFactory.eINSTANCE.createCoordType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Name(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Name(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Name(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Name(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateOperationRef(), GmlFactory.eINSTANCE.createCoordinateOperationRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateReferenceSystemRef(), GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Coordinates(), GmlFactory.eINSTANCE.createCoordinatesType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemAxis(), GmlFactory.eINSTANCE.createCoordinateSystemAxisType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemAxisRef(), GmlFactory.eINSTANCE.createCoordinateSystemAxisRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoordinateSystemRef(), GmlFactory.eINSTANCE.createCoordinateSystemRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Count(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CountExtent(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getCountExtentType(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CountList(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getIntegerOrNullList(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Covariance(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DOUBLE, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CovarianceMatrix(), GmlFactory.eINSTANCE.createCovarianceMatrixType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CoverageFunction(), GmlFactory.eINSTANCE.createCoverageFunctionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CrsRef(), GmlFactory.eINSTANCE.createCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CsID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CsName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CsName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CsName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CsName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CubicSpline(), GmlFactory.eINSTANCE.createCubicSplineType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Curve1(), GmlFactory.eINSTANCE.createCurveType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CurveArrayProperty(), GmlFactory.eINSTANCE.createCurveArrayPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CurveMember(), GmlFactory.eINSTANCE.createCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CurveMembers(), GmlFactory.eINSTANCE.createCurveArrayPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CurveProperty(), GmlFactory.eINSTANCE.createCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Cylinder(), GmlFactory.eINSTANCE.createCylinderType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CylindricalCS(), GmlFactory.eINSTANCE.createCylindricalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_CylindricalCSRef(), GmlFactory.eINSTANCE.createCylindricalCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DataBlock(), GmlFactory.eINSTANCE.createDataBlockType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DataSource(), GmlFactory.eINSTANCE.createStringOrRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DatumRef(), GmlFactory.eINSTANCE.createDatumRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DecimalMinutes(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getDecimalMinutesType(), "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefaultStyle(), GmlFactory.eINSTANCE.createDefaultStylePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefinedByConversion(), GmlFactory.eINSTANCE.createGeneralConversionRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefinitionCollection(), GmlFactory.eINSTANCE.createDictionaryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefinitionMember(), GmlFactory.eINSTANCE.createDictionaryEntryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DictionaryEntry(), GmlFactory.eINSTANCE.createDictionaryEntryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefinitionProxy(), GmlFactory.eINSTANCE.createDefinitionProxyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DefinitionRef(), GmlFactory.eINSTANCE.createReferenceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Degrees(), GmlFactory.eINSTANCE.createDegreesType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DerivationUnitTerm(), GmlFactory.eINSTANCE.createDerivationUnitTermType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRS(), GmlFactory.eINSTANCE.createDerivedCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRSRef(), GmlFactory.eINSTANCE.createDerivedCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DerivedCRSType(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DerivedUnit(), GmlFactory.eINSTANCE.createDerivedUnitType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Description(), GmlFactory.eINSTANCE.createStringOrRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Dictionary(), GmlFactory.eINSTANCE.createDictionaryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedEdge(), GmlFactory.eINSTANCE.createDirectedEdgePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedFace(), GmlFactory.eINSTANCE.createDirectedFacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedNode(), GmlFactory.eINSTANCE.createDirectedNodePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservation(), GmlFactory.eINSTANCE.createDirectedObservationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservation(), GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Observation(), GmlFactory.eINSTANCE.createObservationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Observation(), GmlFactory.eINSTANCE.createDirectedObservationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Observation(), GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedObservationAtDistance(), GmlFactory.eINSTANCE.createDirectedObservationAtDistanceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectedTopoSolid(), GmlFactory.eINSTANCE.createDirectedTopoSolidPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Direction(), GmlFactory.eINSTANCE.createDirectionPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DirectionVector(), GmlFactory.eINSTANCE.createDirectionVectorType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DmsAngle(), GmlFactory.eINSTANCE.createDMSAngleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DmsAngleValue(), GmlFactory.eINSTANCE.createDMSAngleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createDomainSetType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createGridDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createMultiCurveDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createMultiPointDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createMultiSolidDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createMultiSurfaceDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DomainSet(), GmlFactory.eINSTANCE.createRectifiedGridDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_DoubleOrNullTupleList(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getDoubleOrNullList(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Duration(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.DURATION, null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Edge(), GmlFactory.eINSTANCE.createEdgeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EdgeOf(), GmlFactory.eINSTANCE.createCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Ellipsoid(), GmlFactory.eINSTANCE.createEllipsoidType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidalCS(), GmlFactory.eINSTANCE.createEllipsoidalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidalCSRef(), GmlFactory.eINSTANCE.createEllipsoidalCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EllipsoidRef(), GmlFactory.eINSTANCE.createEllipsoidRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EngineeringCRS(), GmlFactory.eINSTANCE.createEngineeringCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EngineeringCRSRef(), GmlFactory.eINSTANCE.createEngineeringCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EngineeringDatum(), GmlFactory.eINSTANCE.createEngineeringDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EngineeringDatumRef(), GmlFactory.eINSTANCE.createEngineeringDatumRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Envelope(), GmlFactory.eINSTANCE.createEnvelopeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Envelope(), GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_EnvelopeWithTimePeriod(), GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ExtentOf(), GmlFactory.eINSTANCE.createSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Exterior(), GmlFactory.eINSTANCE.createAbstractRingPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Face(), GmlFactory.eINSTANCE.createFaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureCollection1(), GmlFactory.eINSTANCE.createFeatureCollectionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureCollection1(), GmlFactory.eINSTANCE.createDynamicFeatureCollectionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureMembers(), GmlFactory.eINSTANCE.createFeatureArrayPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureProperty(), GmlFactory.eINSTANCE.createFeaturePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureProperty(), AppearanceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureStyle(), GmlFactory.eINSTANCE.createFeatureStylePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_FeatureStyle1(), GmlFactory.eINSTANCE.createFeatureStyleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_File(), GmlFactory.eINSTANCE.createFileType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeneralConversionRef(), GmlFactory.eINSTANCE.createGeneralConversionRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeneralTransformationRef(), GmlFactory.eINSTANCE.createGeneralTransformationRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GenericMetaData(), GmlFactory.eINSTANCE.createGenericMetaDataType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeocentricCRS(), GmlFactory.eINSTANCE.createGeocentricCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeocentricCRSRef(), GmlFactory.eINSTANCE.createGeocentricCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Geodesic(), GmlFactory.eINSTANCE.createGeodesicType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeodesicString(), GmlFactory.eINSTANCE.createGeodesicStringType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeodesicString(), GmlFactory.eINSTANCE.createGeodesicType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeodeticDatum(), GmlFactory.eINSTANCE.createGeodeticDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeodeticDatumRef(), GmlFactory.eINSTANCE.createGeodeticDatumRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeographicCRS(), GmlFactory.eINSTANCE.createGeographicCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeographicCRSRef(), GmlFactory.eINSTANCE.createGeographicCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeometricComplex(), GmlFactory.eINSTANCE.createGeometricComplexType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeometryMember(), GmlFactory.eINSTANCE.createGeometryPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeometryMembers(), GmlFactory.eINSTANCE.createGeometryArrayPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeometryStyle(), GmlFactory.eINSTANCE.createGeometryStylePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GeometryStyle1(), GmlFactory.eINSTANCE.createGeometryStyleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GraphStyle(), GmlFactory.eINSTANCE.createGraphStylePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GraphStyle1(), GmlFactory.eINSTANCE.createGraphStyleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GreenwichLongitude(), GmlFactory.eINSTANCE.createAngleChoiceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Grid(), GmlFactory.eINSTANCE.createGridType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Grid(), GmlFactory.eINSTANCE.createRectifiedGridType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GridCoverage(), GmlFactory.eINSTANCE.createGridCoverageType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GridDomain(), GmlFactory.eINSTANCE.createGridDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GridFunction(), GmlFactory.eINSTANCE.createGridFunctionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GridFunction(), GmlFactory.eINSTANCE.createIndexMapType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GroupID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GroupName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GroupName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GroupName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_GroupName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_History(), GmlFactory.eINSTANCE.createHistoryPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_History(), GmlFactory.eINSTANCE.createTrackType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ImageCRS(), GmlFactory.eINSTANCE.createImageCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ImageCRSRef(), GmlFactory.eINSTANCE.createImageCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ImageDatum(), GmlFactory.eINSTANCE.createImageDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ImageDatumRef(), GmlFactory.eINSTANCE.createImageDatumRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IncludesCRS(), GmlFactory.eINSTANCE.createCoordinateReferenceSystemRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IncludesElement(), GmlFactory.eINSTANCE.createCovarianceElementType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IncludesParameter(), GmlFactory.eINSTANCE.createAbstractGeneralOperationParameterRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IncludesValue(), GmlFactory.eINSTANCE.createParameterValueGroupType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IncludesValue(), GmlFactory.eINSTANCE.createParameterValueType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IndexMap(), GmlFactory.eINSTANCE.createIndexMapType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IndirectEntry(), GmlFactory.eINSTANCE.createIndirectEntryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InnerBoundaryIs(), GmlFactory.eINSTANCE.createAbstractRingPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Interior(), GmlFactory.eINSTANCE.createAbstractRingPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IntegerValue(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IntegerValueList(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getIntegerList(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createMeasureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createAngleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createGridLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createScaleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createSpeedType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createTimeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_InverseFlattening(), GmlFactory.eINSTANCE.createVolumeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Isolated(), GmlFactory.eINSTANCE.createIsolatedPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_IsSphere(), IsSphereType.SPHERE))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LabelStyle(), GmlFactory.eINSTANCE.createLabelStylePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LabelStyle1(), GmlFactory.eINSTANCE.createLabelStyleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LinearCS(), GmlFactory.eINSTANCE.createLinearCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LinearCSRef(), GmlFactory.eINSTANCE.createLinearCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LinearRing(), GmlFactory.eINSTANCE.createLinearRingType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LineString(), GmlFactory.eINSTANCE.createLineStringType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LineStringMember(), GmlFactory.eINSTANCE.createLineStringPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LineStringProperty(), GmlFactory.eINSTANCE.createLineStringPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LineStringSegment(), GmlFactory.eINSTANCE.createLineStringSegmentType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Location(), GmlFactory.eINSTANCE.createLocationPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Location(), GmlFactory.eINSTANCE.createPriorityLocationPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LocationKeyWord(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_LocationString(), GmlFactory.eINSTANCE.createStringOrRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MappingRule(), GmlFactory.eINSTANCE.createStringOrRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MaximalComplex(), GmlFactory.eINSTANCE.createTopoComplexMemberType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MaximumOccurs(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createMeasureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createAngleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createGridLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createScaleType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createSpeedType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createTimeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Measure(), GmlFactory.eINSTANCE.createVolumeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeasureDescription(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createBoundarySurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createBuildingInstallationPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createBuildingPartPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createIntBuildingInstallationPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createInteriorFurniturePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createInteriorRoomPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), BuildingFactory.eINSTANCE.createOpeningPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), CitygmlFactory.eINSTANCE.createAddressPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), CitygmlFactory.eINSTANCE.createImplicitRepresentationPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), GmlFactory.eINSTANCE.createAssociationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), TransportationFactory.eINSTANCE.createTrafficAreaPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), ReliefFactory.eINSTANCE.createGridPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), ReliefFactory.eINSTANCE.createReliefComponentPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), ReliefFactory.eINSTANCE.createTinPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Member(), WaterbodyFactory.eINSTANCE.createBoundedByWaterSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Members(), GmlFactory.eINSTANCE.createArrayAssociationType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeridianID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MeridianName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MetaDataProperty(), GmlFactory.eINSTANCE.createMetaDataPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodFormula(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodID(), GmlFactory.eINSTANCE.createIdentifierType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodName(), GmlFactory.eINSTANCE.createCodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodName(), GmlFactory.eINSTANCE.createDerivedCRSTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodName(), GmlFactory.eINSTANCE.createPixelInCellType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MethodName(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MinimumOccurs(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.NON_NEGATIVE_INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Minutes(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getArcMinutesType(), "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ModifiedCoordinate(), XMLTypeFactory.eINSTANCE.createFromString(XMLTypePackage.Literals.POSITIVE_INTEGER, "0")))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MovingObjectStatus(), GmlFactory.eINSTANCE.createMovingObjectStatusType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCenterLineOf(), GmlFactory.eINSTANCE.createMultiCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCenterOf(), GmlFactory.eINSTANCE.createMultiPointPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCoverage(), GmlFactory.eINSTANCE.createMultiSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCurve(), GmlFactory.eINSTANCE.createMultiCurveType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveCoverage(), GmlFactory.eINSTANCE.createMultiCurveCoverageType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveDomain(), GmlFactory.eINSTANCE.createMultiCurveDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiCurveProperty(), GmlFactory.eINSTANCE.createMultiCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiEdgeOf(), GmlFactory.eINSTANCE.createMultiCurvePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiExtentOf(), GmlFactory.eINSTANCE.createMultiSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiGeometry(), GmlFactory.eINSTANCE.createMultiGeometryType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiGeometryProperty(), GmlFactory.eINSTANCE.createMultiGeometryPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiLineString(), GmlFactory.eINSTANCE.createMultiLineStringType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiLocation(), GmlFactory.eINSTANCE.createMultiPointPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPoint(), GmlFactory.eINSTANCE.createMultiPointType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPointCoverage(), GmlFactory.eINSTANCE.createMultiPointCoverageType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPointDomain(), GmlFactory.eINSTANCE.createMultiPointDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPointProperty(), GmlFactory.eINSTANCE.createMultiPointPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPolygon(), GmlFactory.eINSTANCE.createMultiPolygonType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiPosition(), GmlFactory.eINSTANCE.createMultiPointPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSolid(), GmlFactory.eINSTANCE.createMultiSolidType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidCoverage(), GmlFactory.eINSTANCE.createMultiSolidCoverageType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidDomain(), GmlFactory.eINSTANCE.createMultiSolidDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSolidProperty(), GmlFactory.eINSTANCE.createMultiSolidPropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSurface(), GmlFactory.eINSTANCE.createMultiSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceCoverage(), GmlFactory.eINSTANCE.createMultiSurfaceCoverageType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceDomain(), GmlFactory.eINSTANCE.createMultiSurfaceDomainType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_MultiSurfaceProperty(), GmlFactory.eINSTANCE.createMultiSurfacePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Node(), GmlFactory.eINSTANCE.createNodeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_Null(), GmlFactory.eINSTANCE.createFromString(GmlPackage.eINSTANCE.getNullType(), null)))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ObliqueCartesianCS(), GmlFactory.eINSTANCE.createObliqueCartesianCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_ObliqueCartesianCSRef(), GmlFactory.eINSTANCE.createObliqueCartesianCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OffsetCurve(), GmlFactory.eINSTANCE.createOffsetCurveType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationMethod(), GmlFactory.eINSTANCE.createOperationMethodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationMethodRef(), GmlFactory.eINSTANCE.createOperationMethodRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationParameter(), GmlFactory.eINSTANCE.createOperationParameterType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterGroup(), GmlFactory.eINSTANCE.createOperationParameterGroupType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterGroupRef(), GmlFactory.eINSTANCE.createOperationParameterRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationParameterRef(), GmlFactory.eINSTANCE.createOperationParameterRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationRef(), GmlFactory.eINSTANCE.createOperationRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_OperationVersion(), STR0STRSTR0STR0STRSTR0STRSTR"))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalCRS(), GmlFactory.eINSTANCE.createVerticalCRSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalCRSRef(), GmlFactory.eINSTANCE.createVerticalCRSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalCS(), GmlFactory.eINSTANCE.createVerticalCSType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalCSRef(), GmlFactory.eINSTANCE.createVerticalCSRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatum(), GmlFactory.eINSTANCE.createVerticalDatumType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatumRef(), GmlFactory.eINSTANCE.createVerticalDatumRefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalDatumType(), GmlFactory.eINSTANCE.createVerticalDatumTypeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalExtent(), GmlFactory.eINSTANCE.createEnvelopeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GmlPackage.eINSTANCE.getDocumentRoot_VerticalExtent(), GmlFactory.eINSTANCE.createEnvelopeWithTimePeriodType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TexturedsurfacePackage.Literals.DOCUMENT_ROOT__APPEARANCE1, TexturedsurfaceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TexturedsurfacePackage.Literals.DOCUMENT_ROOT__MATERIAL, TexturedsurfaceFactory.eINSTANCE.createMaterialType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TexturedsurfacePackage.Literals.DOCUMENT_ROOT__SIMPLE_TEXTURE, TexturedsurfaceFactory.eINSTANCE.createSimpleTextureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TexturedsurfacePackage.Literals.DOCUMENT_ROOT__TEXTURED_SURFACE, TexturedsurfaceFactory.eINSTANCE.createTexturedSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__APPEARANCE, AppearanceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__APPEARANCE_MEMBER, AppearanceFactory.eINSTANCE.createAppearancePropertyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__GEOREFERENCED_TEXTURE, AppearanceFactory.eINSTANCE.createGeoreferencedTextureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__PARAMETERIZED_TEXTURE, AppearanceFactory.eINSTANCE.createParameterizedTextureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__TEX_COORD_GEN, AppearanceFactory.eINSTANCE.createTexCoordGenType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__TEX_COORD_LIST, AppearanceFactory.eINSTANCE.createTexCoordListType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (AppearancePackage.Literals.DOCUMENT_ROOT__X3_DMATERIAL, AppearanceFactory.eINSTANCE.createX3DMaterialType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createTransportationComplexType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createRailwayType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createRoadType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createSquareType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createTrackType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_OBJECT, TransportationFactory.eINSTANCE.createTrafficAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__AUXILIARY_TRAFFIC_AREA, TransportationFactory.eINSTANCE.createAuxiliaryTrafficAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__RAILWAY, TransportationFactory.eINSTANCE.createRailwayType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX, TransportationFactory.eINSTANCE.createTransportationComplexType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX, TransportationFactory.eINSTANCE.createRailwayType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX, TransportationFactory.eINSTANCE.createRoadType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX, TransportationFactory.eINSTANCE.createSquareType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRANSPORTATION_COMPLEX, TransportationFactory.eINSTANCE.createTrackType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__ROAD, TransportationFactory.eINSTANCE.createRoadType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__SQUARE, TransportationFactory.eINSTANCE.createSquareType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRACK, TransportationFactory.eINSTANCE.createTrackType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (TransportationPackage.Literals.DOCUMENT_ROOT__TRAFFIC_AREA, TransportationFactory.eINSTANCE.createTrafficAreaType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__BREAKLINE_RELIEF, ReliefFactory.eINSTANCE.createBreaklineReliefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__ELEVATION, GmlFactory.eINSTANCE.createLengthType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__MASS_POINT_RELIEF, ReliefFactory.eINSTANCE.createMassPointReliefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__RASTER_RELIEF, ReliefFactory.eINSTANCE.createRasterReliefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__RELIEF_FEATURE, ReliefFactory.eINSTANCE.createReliefFeatureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (ReliefPackage.Literals.DOCUMENT_ROOT__TIN_RELIEF, ReliefFactory.eINSTANCE.createTINReliefType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CityfurniturePackage.Literals.DOCUMENT_ROOT__CITY_FURNITURE, CityfurnitureFactory.eINSTANCE.createCityFurnitureType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (CityobjectgroupPackage.Literals.DOCUMENT_ROOT__CITY_OBJECT_GROUP, CityobjectgroupFactory.eINSTANCE.createCityObjectGroupType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (LandusePackage.Literals.DOCUMENT_ROOT__LAND_USE, LanduseFactory.eINSTANCE.createLandUseType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (VegetationPackage.Literals.DOCUMENT_ROOT__VEGETATION_OBJECT, VegetationFactory.eINSTANCE.createPlantCoverType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (VegetationPackage.Literals.DOCUMENT_ROOT__VEGETATION_OBJECT, VegetationFactory.eINSTANCE.createSolitaryVegetationObjectType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (VegetationPackage.Literals.DOCUMENT_ROOT__PLANT_COVER, VegetationFactory.eINSTANCE.createPlantCoverType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (VegetationPackage.Literals.DOCUMENT_ROOT__SOLITARY_VEGETATION_OBJECT, VegetationFactory.eINSTANCE.createSolitaryVegetationObjectType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_OBJECT, WaterbodyFactory.eINSTANCE.createWaterBodyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_BODY, WaterbodyFactory.eINSTANCE.createWaterBodyType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_CLOSURE_SURFACE, WaterbodyFactory.eINSTANCE.createWaterClosureSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_GROUND_SURFACE, WaterbodyFactory.eINSTANCE.createWaterGroundSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (WaterbodyPackage.Literals.DOCUMENT_ROOT__WATER_SURFACE, WaterbodyFactory.eINSTANCE.createWaterSurfaceType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__DATE_ATTRIBUTE, GenericsFactory.eINSTANCE.createDateAttributeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__DOUBLE_ATTRIBUTE, GenericsFactory.eINSTANCE.createDoubleAttributeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__GENERIC_CITY_OBJECT, GenericsFactory.eINSTANCE.createGenericCityObjectType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__INT_ATTRIBUTE, GenericsFactory.eINSTANCE.createIntAttributeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__STRING_ATTRIBUTE, GenericsFactory.eINSTANCE.createStringAttributeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (GenericsPackage.Literals.DOCUMENT_ROOT__URI_ATTRIBUTE, GenericsFactory.eINSTANCE.createUriAttributeType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE, LanguageFactory.eINSTANCE.createAnimateType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE_COLOR, LanguageFactory.eINSTANCE.createAnimateColorType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (Smil20Package.Literals.DOCUMENT_ROOT__ANIMATE_MOTION, LanguageFactory.eINSTANCE.createAnimateMotionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (Smil20Package.Literals.DOCUMENT_ROOT__SET, LanguageFactory.eINSTANCE.createSetType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE, LanguageFactory.eINSTANCE.createAnimateType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE_COLOR, LanguageFactory.eINSTANCE.createAnimateColorType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (LanguagePackage.Literals.DOCUMENT_ROOT__ANIMATE_MOTION, LanguageFactory.eINSTANCE.createAnimateMotionType()))); newChildDescriptors.add (createChildParameter (XALPackage.eINSTANCE.getLargeMailUserType_Any(), FeatureMapUtil.createEntry (LanguagePackage.Literals.DOCUMENT_ROOT__SET, LanguageFactory.eINSTANCE.createSetType()))); }
|
/**
* This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
* that can be created under this object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
|
This adds <code>org.eclipse.emf.edit.command.CommandParameter</code>s describing the children that can be created under this object.
|
collectNewChildDescriptors
|
{
"repo_name": "markus1978/citygml4emf",
"path": "de.hub.citygml.emf.ecore.edit/src/org/oasis/xAL/provider/LargeMailUserTypeItemProvider.java",
"license": "apache-2.0",
"size": 228440
}
|
[
"java.util.Collection",
"net.opengis.citygml.CitygmlFactory",
"net.opengis.citygml.CitygmlPackage",
"net.opengis.citygml.appearance.AppearanceFactory",
"net.opengis.citygml.appearance.AppearancePackage",
"net.opengis.citygml.building.BuildingFactory",
"net.opengis.citygml.building.BuildingPackage",
"net.opengis.citygml.cityfurniture.CityfurnitureFactory",
"net.opengis.citygml.cityfurniture.CityfurniturePackage",
"net.opengis.citygml.cityobjectgroup.CityobjectgroupFactory",
"net.opengis.citygml.cityobjectgroup.CityobjectgroupPackage",
"net.opengis.citygml.generics.GenericsFactory",
"net.opengis.citygml.generics.GenericsPackage",
"net.opengis.citygml.landuse.LanduseFactory",
"net.opengis.citygml.landuse.LandusePackage",
"net.opengis.citygml.relief.ReliefFactory",
"net.opengis.citygml.relief.ReliefPackage",
"net.opengis.citygml.texturedsurface.TexturedsurfaceFactory",
"net.opengis.citygml.texturedsurface.TexturedsurfacePackage",
"net.opengis.citygml.transportation.TransportationFactory",
"net.opengis.citygml.transportation.TransportationPackage",
"net.opengis.citygml.vegetation.VegetationFactory",
"net.opengis.citygml.vegetation.VegetationPackage",
"net.opengis.citygml.waterbody.WaterbodyFactory",
"net.opengis.citygml.waterbody.WaterbodyPackage",
"net.opengis.gml.CompassPointEnumeration",
"net.opengis.gml.GmlFactory",
"net.opengis.gml.GmlPackage",
"net.opengis.gml.IsSphereType",
"org.eclipse.emf.ecore.util.FeatureMapUtil",
"org.eclipse.emf.ecore.xml.type.XMLTypeFactory",
"org.eclipse.emf.ecore.xml.type.XMLTypePackage",
"org.oasis.xAL.XALFactory",
"org.oasis.xAL.XALPackage",
"org.w3._2001.smil20.Smil20Package",
"org.w3._2001.smil20.language.LanguageFactory",
"org.w3._2001.smil20.language.LanguagePackage"
] |
import java.util.Collection; import net.opengis.citygml.CitygmlFactory; import net.opengis.citygml.CitygmlPackage; import net.opengis.citygml.appearance.AppearanceFactory; import net.opengis.citygml.appearance.AppearancePackage; import net.opengis.citygml.building.BuildingFactory; import net.opengis.citygml.building.BuildingPackage; import net.opengis.citygml.cityfurniture.CityfurnitureFactory; import net.opengis.citygml.cityfurniture.CityfurniturePackage; import net.opengis.citygml.cityobjectgroup.CityobjectgroupFactory; import net.opengis.citygml.cityobjectgroup.CityobjectgroupPackage; import net.opengis.citygml.generics.GenericsFactory; import net.opengis.citygml.generics.GenericsPackage; import net.opengis.citygml.landuse.LanduseFactory; import net.opengis.citygml.landuse.LandusePackage; import net.opengis.citygml.relief.ReliefFactory; import net.opengis.citygml.relief.ReliefPackage; import net.opengis.citygml.texturedsurface.TexturedsurfaceFactory; import net.opengis.citygml.texturedsurface.TexturedsurfacePackage; import net.opengis.citygml.transportation.TransportationFactory; import net.opengis.citygml.transportation.TransportationPackage; import net.opengis.citygml.vegetation.VegetationFactory; import net.opengis.citygml.vegetation.VegetationPackage; import net.opengis.citygml.waterbody.WaterbodyFactory; import net.opengis.citygml.waterbody.WaterbodyPackage; import net.opengis.gml.CompassPointEnumeration; import net.opengis.gml.GmlFactory; import net.opengis.gml.GmlPackage; import net.opengis.gml.IsSphereType; import org.eclipse.emf.ecore.util.FeatureMapUtil; import org.eclipse.emf.ecore.xml.type.XMLTypeFactory; import org.eclipse.emf.ecore.xml.type.XMLTypePackage; import org.oasis.xAL.XALFactory; import org.oasis.xAL.XALPackage; import org.w3._2001.smil20.Smil20Package; import org.w3._2001.smil20.language.LanguageFactory; import org.w3._2001.smil20.language.LanguagePackage;
|
import java.util.*; import net.opengis.citygml.*; import net.opengis.citygml.appearance.*; import net.opengis.citygml.building.*; import net.opengis.citygml.cityfurniture.*; import net.opengis.citygml.cityobjectgroup.*; import net.opengis.citygml.generics.*; import net.opengis.citygml.landuse.*; import net.opengis.citygml.relief.*; import net.opengis.citygml.texturedsurface.*; import net.opengis.citygml.transportation.*; import net.opengis.citygml.vegetation.*; import net.opengis.citygml.waterbody.*; import net.opengis.gml.*; import org.eclipse.emf.ecore.util.*; import org.eclipse.emf.ecore.xml.type.*; import org.oasis.*; import org.w3.*;
|
[
"java.util",
"net.opengis.citygml",
"net.opengis.gml",
"org.eclipse.emf",
"org.oasis",
"org.w3"
] |
java.util; net.opengis.citygml; net.opengis.gml; org.eclipse.emf; org.oasis; org.w3;
| 2,238,686
|
@Test
public void testScopeConfig() {
Configuration config = new Configuration();
config.setString(MetricOptions.SCOPE_NAMING_TM, "A");
config.setString(MetricOptions.SCOPE_NAMING_TM_JOB, "B");
config.setString(MetricOptions.SCOPE_NAMING_TASK, "C");
config.setString(MetricOptions.SCOPE_NAMING_OPERATOR, "D");
ScopeFormats scopeConfig = ScopeFormats.fromConfig(config);
assertEquals("A", scopeConfig.getTaskManagerFormat().format());
assertEquals("B", scopeConfig.getTaskManagerJobFormat().format());
assertEquals("C", scopeConfig.getTaskFormat().format());
assertEquals("D", scopeConfig.getOperatorFormat().format());
}
|
void function() { Configuration config = new Configuration(); config.setString(MetricOptions.SCOPE_NAMING_TM, "A"); config.setString(MetricOptions.SCOPE_NAMING_TM_JOB, "B"); config.setString(MetricOptions.SCOPE_NAMING_TASK, "C"); config.setString(MetricOptions.SCOPE_NAMING_OPERATOR, "D"); ScopeFormats scopeConfig = ScopeFormats.fromConfig(config); assertEquals("A", scopeConfig.getTaskManagerFormat().format()); assertEquals("B", scopeConfig.getTaskManagerJobFormat().format()); assertEquals("C", scopeConfig.getTaskFormat().format()); assertEquals("D", scopeConfig.getOperatorFormat().format()); }
|
/**
* Verifies that the scope configuration is properly extracted.
*/
|
Verifies that the scope configuration is properly extracted
|
testScopeConfig
|
{
"repo_name": "gyfora/flink",
"path": "flink-runtime/src/test/java/org/apache/flink/runtime/metrics/MetricRegistryImplTest.java",
"license": "apache-2.0",
"size": 17415
}
|
[
"org.apache.flink.configuration.Configuration",
"org.apache.flink.configuration.MetricOptions",
"org.apache.flink.runtime.metrics.scope.ScopeFormats",
"org.junit.Assert"
] |
import org.apache.flink.configuration.Configuration; import org.apache.flink.configuration.MetricOptions; import org.apache.flink.runtime.metrics.scope.ScopeFormats; import org.junit.Assert;
|
import org.apache.flink.configuration.*; import org.apache.flink.runtime.metrics.scope.*; import org.junit.*;
|
[
"org.apache.flink",
"org.junit"
] |
org.apache.flink; org.junit;
| 387,416
|
protected void addOnStoppingDurationPropertyDescriptor(Object object) {
itemPropertyDescriptors.add
(createItemPropertyDescriptor
(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_SimulationConfiguration_onStoppingDuration_feature"),
getString("_UI_PropertyDescriptor_description", "_UI_SimulationConfiguration_onStoppingDuration_feature", "_UI_SimulationConfiguration_type"),
ComponentPackage.Literals.SIMULATION_CONFIGURATION__ON_STOPPING_DURATION,
true,
false,
false,
ItemPropertyDescriptor.INTEGRAL_VALUE_IMAGE,
null,
null));
}
|
void function(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString(STR), getString(STR, STR, STR), ComponentPackage.Literals.SIMULATION_CONFIGURATION__ON_STOPPING_DURATION, true, false, false, ItemPropertyDescriptor.INTEGRAL_VALUE_IMAGE, null, null)); }
|
/**
* This adds a property descriptor for the On Stopping Duration feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
|
This adds a property descriptor for the On Stopping Duration feature.
|
addOnStoppingDurationPropertyDescriptor
|
{
"repo_name": "BaSys-PC1/models",
"path": "de.dfki.iui.basys.model.runtime.edit/src/de/dfki/iui/basys/model/runtime/component/provider/SimulationConfigurationItemProvider.java",
"license": "epl-1.0",
"size": 17784
}
|
[
"de.dfki.iui.basys.model.runtime.component.ComponentPackage",
"org.eclipse.emf.edit.provider.ComposeableAdapterFactory",
"org.eclipse.emf.edit.provider.ItemPropertyDescriptor"
] |
import de.dfki.iui.basys.model.runtime.component.ComponentPackage; import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; import org.eclipse.emf.edit.provider.ItemPropertyDescriptor;
|
import de.dfki.iui.basys.model.runtime.component.*; import org.eclipse.emf.edit.provider.*;
|
[
"de.dfki.iui",
"org.eclipse.emf"
] |
de.dfki.iui; org.eclipse.emf;
| 2,156,409
|
@Restricted(Beta.class)
public void setChannel(@Nonnull ChannelBuilder cb,
@Nonnull CommandTransport commandTransport,
@CheckForNull Channel.Listener listener) throws IOException, InterruptedException {
for (ChannelConfigurator cc : ChannelConfigurator.all()) {
cc.onChannelBuilding(cb,this);
}
OutputStream headerStream = cb.getHeaderStream();
if (headerStream == null) {
LOGGER.log(Level.WARNING, "No header stream defined when setting channel for computer {0}. " +
"Launch log won't be printed", this);
}
Channel channel = cb.build(commandTransport);
setChannel(channel, headerStream, listener);
}
|
@Restricted(Beta.class) void function(@Nonnull ChannelBuilder cb, @Nonnull CommandTransport commandTransport, @CheckForNull Channel.Listener listener) throws IOException, InterruptedException { for (ChannelConfigurator cc : ChannelConfigurator.all()) { cc.onChannelBuilding(cb,this); } OutputStream headerStream = cb.getHeaderStream(); if (headerStream == null) { LOGGER.log(Level.WARNING, STR + STR, this); } Channel channel = cb.build(commandTransport); setChannel(channel, headerStream, listener); }
|
/**
* Creates a {@link Channel} from the given Channel Builder and Command Transport.
* This method can be used to allow {@link ComputerLauncher}s to create channels not based on I/O streams.
*
* @param cb
* Channel Builder.
* To print launch logs this channel builder should have a Header Stream defined
* (see {@link ChannelBuilder#getHeaderStream()}) in this argument or by one of {@link ChannelConfigurator}s.
* @param commandTransport
* Command Transport
* @param listener
* Gets a notification when the channel closes, to perform clean up. Can be {@code null}.
* By the time this method is called, the cause of the termination is reported to the user,
* so the implementation of the listener doesn't need to do that again.
* @since 2.127
*/
|
Creates a <code>Channel</code> from the given Channel Builder and Command Transport. This method can be used to allow <code>ComputerLauncher</code>s to create channels not based on I/O streams
|
setChannel
|
{
"repo_name": "andresrc/jenkins",
"path": "core/src/main/java/hudson/slaves/SlaveComputer.java",
"license": "mit",
"size": 38862
}
|
[
"hudson.remoting.Channel",
"hudson.remoting.ChannelBuilder",
"hudson.remoting.CommandTransport",
"java.io.IOException",
"java.io.OutputStream",
"java.util.logging.Level",
"javax.annotation.CheckForNull",
"javax.annotation.Nonnull",
"org.kohsuke.accmod.Restricted",
"org.kohsuke.accmod.restrictions.Beta"
] |
import hudson.remoting.Channel; import hudson.remoting.ChannelBuilder; import hudson.remoting.CommandTransport; import java.io.IOException; import java.io.OutputStream; import java.util.logging.Level; import javax.annotation.CheckForNull; import javax.annotation.Nonnull; import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.restrictions.Beta;
|
import hudson.remoting.*; import java.io.*; import java.util.logging.*; import javax.annotation.*; import org.kohsuke.accmod.*; import org.kohsuke.accmod.restrictions.*;
|
[
"hudson.remoting",
"java.io",
"java.util",
"javax.annotation",
"org.kohsuke.accmod"
] |
hudson.remoting; java.io; java.util; javax.annotation; org.kohsuke.accmod;
| 674,981
|
public boolean isFalsePositive(HttpMessage msg) {
return false;
}
|
boolean function(HttpMessage msg) { return false; }
|
/**
* Always returns false - override to add functionality to detect FPs
*
* @param msg the message being scanned (after being sent).
* @return true if its a false positive
*/
|
Always returns false - override to add functionality to detect FPs
|
isFalsePositive
|
{
"repo_name": "kingthorin/zap-extensions",
"path": "addOns/commonlib/src/main/java/org/zaproxy/addon/commonlib/AbstractHostFilePlugin.java",
"license": "apache-2.0",
"size": 7164
}
|
[
"org.parosproxy.paros.network.HttpMessage"
] |
import org.parosproxy.paros.network.HttpMessage;
|
import org.parosproxy.paros.network.*;
|
[
"org.parosproxy.paros"
] |
org.parosproxy.paros;
| 840,011
|
public static Collection<SelectorOptions<GetOperationOptions>> createNoFetchCollection() {
return SelectorOptions.createCollection(createNoFetch());
}
|
static Collection<SelectorOptions<GetOperationOptions>> function() { return SelectorOptions.createCollection(createNoFetch()); }
|
/**
* No not fetch any information from external sources, e.g. do not fetch account data from resource,
* do not fetch resource schema, etc.
* Such operation returns only the data stored in midPoint repository.
*/
|
No not fetch any information from external sources, e.g. do not fetch account data from resource, do not fetch resource schema, etc. Such operation returns only the data stored in midPoint repository
|
createNoFetchCollection
|
{
"repo_name": "bshp/midPoint",
"path": "infra/schema/src/main/java/com/evolveum/midpoint/schema/GetOperationOptions.java",
"license": "apache-2.0",
"size": 43853
}
|
[
"java.util.Collection"
] |
import java.util.Collection;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 260,403
|
public static String getFileLogs() throws AgencyLogException{
return getFileLogs(ClientLogLevel.ALL);
}
|
static String function() throws AgencyLogException{ return getFileLogs(ClientLogLevel.ALL); }
|
/**
* Read entry logs from the file logs
* @return
* @throws AgencyLogException
*/
|
Read entry logs from the file logs
|
getFileLogs
|
{
"repo_name": "SAP/sap_mobile_native_android",
"path": "ClientLogs/src/com/sap/dcode/agency/services/logs/AgencyLogManager.java",
"license": "apache-2.0",
"size": 6124
}
|
[
"com.sap.smp.client.supportability.ClientLogLevel"
] |
import com.sap.smp.client.supportability.ClientLogLevel;
|
import com.sap.smp.client.supportability.*;
|
[
"com.sap.smp"
] |
com.sap.smp;
| 2,729,691
|
long getDocumentCount() {
try (MongoClient mongoClient =
new MongoClient(
new MongoClientURI(
spec.uri(),
getOptions(
spec.maxConnectionIdleTime(),
spec.sslEnabled(),
spec.sslInvalidHostNameAllowed(),
spec.ignoreSSLCertificate())))) {
return getDocumentCount(mongoClient, spec.database(), spec.collection());
} catch (Exception e) {
return -1;
}
}
|
long getDocumentCount() { try (MongoClient mongoClient = new MongoClient( new MongoClientURI( spec.uri(), getOptions( spec.maxConnectionIdleTime(), spec.sslEnabled(), spec.sslInvalidHostNameAllowed(), spec.ignoreSSLCertificate())))) { return getDocumentCount(mongoClient, spec.database(), spec.collection()); } catch (Exception e) { return -1; } }
|
/**
* Returns number of Documents in a collection.
*
* @return Positive number of Documents in a collection or -1 on error.
*/
|
Returns number of Documents in a collection
|
getDocumentCount
|
{
"repo_name": "iemejia/incubator-beam",
"path": "sdks/java/io/mongodb/src/main/java/org/apache/beam/sdk/io/mongodb/MongoDbIO.java",
"license": "apache-2.0",
"size": 37430
}
|
[
"com.mongodb.MongoClient",
"com.mongodb.MongoClientURI"
] |
import com.mongodb.MongoClient; import com.mongodb.MongoClientURI;
|
import com.mongodb.*;
|
[
"com.mongodb"
] |
com.mongodb;
| 945,325
|
public Field getFieldById(Long fieldIdParam) {
Field field = new Field(fieldIdParam);
//Set for Payara server...
field.setFieldValue(new MultiChoice());
field.setServiceTicket(this.serviceTicket);
return new Field(this.postJson(
field, Version1.getById()));
}
|
Field function(Long fieldIdParam) { Field field = new Field(fieldIdParam); field.setFieldValue(new MultiChoice()); field.setServiceTicket(this.serviceTicket); return new Field(this.postJson( field, Version1.getById())); }
|
/**
* Retrieves field information by {@code fieldIdParam}.
*
* @param fieldIdParam The field Primary Key.
* @return Field Definition by primary key.
*/
|
Retrieves field information by fieldIdParam
|
getFieldById
|
{
"repo_name": "Koekiebox-PTY-LTD/Fluid",
"path": "fluid-ws-java-client/src/main/java/com/fluidbpm/ws/client/v1/flow/RouteFieldClient.java",
"license": "gpl-3.0",
"size": 17023
}
|
[
"com.fluidbpm.program.api.vo.field.Field",
"com.fluidbpm.program.api.vo.field.MultiChoice",
"com.fluidbpm.program.api.vo.ws.WS"
] |
import com.fluidbpm.program.api.vo.field.Field; import com.fluidbpm.program.api.vo.field.MultiChoice; import com.fluidbpm.program.api.vo.ws.WS;
|
import com.fluidbpm.program.api.vo.field.*; import com.fluidbpm.program.api.vo.ws.*;
|
[
"com.fluidbpm.program"
] |
com.fluidbpm.program;
| 2,356,430
|
public String getLatestActiveRunID() throws APIException, IOException
{
APIClient client = initializeClient();
// Submit request
JSONArray getTestsRequest = (JSONArray) client.sendGet("get_runs/" + ServerStaticGlobals.testRailProjectID +
"&is_completed=0&created_by=" +
getUserIDByEmail(System.getProperty("testrailUser", "unknown")));
Integer count = getTestsRequest.size();
// Grab the latest run, if available
if (count > 0)
{
Object o = getTestsRequest.get(count - 1);
JSONObject run = (JSONObject) o;
return run.get("id").toString();
}
else
{
throw new Error("No active runs are available.");
}
}
|
String function() throws APIException, IOException { APIClient client = initializeClient(); JSONArray getTestsRequest = (JSONArray) client.sendGet(STR + ServerStaticGlobals.testRailProjectID + STR + getUserIDByEmail(System.getProperty(STR, STR))); Integer count = getTestsRequest.size(); if (count > 0) { Object o = getTestsRequest.get(count - 1); JSONObject run = (JSONObject) o; return run.get("id").toString(); } else { throw new Error(STR); } }
|
/**
* Get the latest active run ID
*
* @return String containing active run ID
* @throws APIException
* @throws IOException
*/
|
Get the latest active run ID
|
getLatestActiveRunID
|
{
"repo_name": "crazycabo/testable-testsuite-ui",
"path": "src/main/java/com/crazycabo/drivers/testrail/APIMethods.java",
"license": "mit",
"size": 6011
}
|
[
"com.crazycabo.models.ServerStaticGlobals",
"java.io.IOException",
"org.json.simple.JSONArray",
"org.json.simple.JSONObject"
] |
import com.crazycabo.models.ServerStaticGlobals; import java.io.IOException; import org.json.simple.JSONArray; import org.json.simple.JSONObject;
|
import com.crazycabo.models.*; import java.io.*; import org.json.simple.*;
|
[
"com.crazycabo.models",
"java.io",
"org.json.simple"
] |
com.crazycabo.models; java.io; org.json.simple;
| 2,734,753
|
public void reset() {
mPieces = new ArrayList<Piece>();
setText("");
}
|
void function() { mPieces = new ArrayList<Piece>(); setText(""); }
|
/**
* Resets the styling of this view and sets it's content to an empty String.
*/
|
Resets the styling of this view and sets it's content to an empty String
|
reset
|
{
"repo_name": "tamzi/RxAndroidBootstrap",
"path": "commons/src/main/java/com/richardradics/commons/widget/BabushkaText.java",
"license": "apache-2.0",
"size": 13223
}
|
[
"java.util.ArrayList"
] |
import java.util.ArrayList;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 1,192,540
|
@GET
@Path("/")
public List<LessonDTO> findAll() throws DAOException {
List<Lesson> lessons = lessonDAO.findAll();
return lessonDtoMapper.toLessonsDTO(lessons);
}
|
@Path("/") List<LessonDTO> function() throws DAOException { List<Lesson> lessons = lessonDAO.findAll(); return lessonDtoMapper.toLessonsDTO(lessons); }
|
/**
* Find all endpoint.
*
* @return the list
* @throws DAOException the DAO exception
*/
|
Find all endpoint
|
findAll
|
{
"repo_name": "yntelectual/nlighten",
"path": "nlighten-backend/src/main/java/me/nlighten/backend/rest/endpoints/LessonEndpoint.java",
"license": "apache-2.0",
"size": 3103
}
|
[
"java.util.List",
"javax.ws.rs.Path",
"me.nlighten.backend.db.dao.exception.DAOException",
"me.nlighten.backend.db.model.Lesson",
"me.nlighten.backend.rest.model.LessonDTO"
] |
import java.util.List; import javax.ws.rs.Path; import me.nlighten.backend.db.dao.exception.DAOException; import me.nlighten.backend.db.model.Lesson; import me.nlighten.backend.rest.model.LessonDTO;
|
import java.util.*; import javax.ws.rs.*; import me.nlighten.backend.db.dao.exception.*; import me.nlighten.backend.db.model.*; import me.nlighten.backend.rest.model.*;
|
[
"java.util",
"javax.ws",
"me.nlighten.backend"
] |
java.util; javax.ws; me.nlighten.backend;
| 141,503
|
public Builder<T, R> withFlushInterval(Amount<Integer, Time> flushInterval) {
instance.flushInterval = flushInterval;
return this;
}
|
Builder<T, R> function(Amount<Integer, Time> flushInterval) { instance.flushInterval = flushInterval; return this; }
|
/**
* Specifies the maximum amount of time that a log entry may wait in the buffer before an
* attempt is made to flush the buffer.
*
* @param flushInterval Log flush interval.
* @return A reference to the builder.
*/
|
Specifies the maximum amount of time that a log entry may wait in the buffer before an attempt is made to flush the buffer
|
withFlushInterval
|
{
"repo_name": "foursquare/commons-old",
"path": "src/java/com/twitter/common/logging/BufferedLog.java",
"license": "apache-2.0",
"size": 8818
}
|
[
"com.twitter.common.quantity.Amount",
"com.twitter.common.quantity.Time"
] |
import com.twitter.common.quantity.Amount; import com.twitter.common.quantity.Time;
|
import com.twitter.common.quantity.*;
|
[
"com.twitter.common"
] |
com.twitter.common;
| 2,230,054
|
public void waitTheNth(int n) {
PAFuture.waitFor(this.memberList.get(n));
}
|
void function(int n) { PAFuture.waitFor(this.memberList.get(n)); }
|
/**
* Waits for the member at the specified rank is arrived.
*
* @param n
* - the rank of the awaited member.
*/
|
Waits for the member at the specified rank is arrived
|
waitTheNth
|
{
"repo_name": "acontes/programming",
"path": "src/Core/org/objectweb/proactive/core/group/ProxyForGroup.java",
"license": "agpl-3.0",
"size": 57805
}
|
[
"org.objectweb.proactive.api.PAFuture"
] |
import org.objectweb.proactive.api.PAFuture;
|
import org.objectweb.proactive.api.*;
|
[
"org.objectweb.proactive"
] |
org.objectweb.proactive;
| 2,480,464
|
public void unregisterPropertyOnType(String propertyName, JSType type) {
// TODO(bashir): typesIndexedByProperty should also be updated!
Map<String, ObjectType> typeSet =
eachRefTypeIndexedByProperty.get(propertyName);
if (typeSet != null) {
typeSet.remove(type.toObjectType().getReferenceName());
}
}
|
void function(String propertyName, JSType type) { Map<String, ObjectType> typeSet = eachRefTypeIndexedByProperty.get(propertyName); if (typeSet != null) { typeSet.remove(type.toObjectType().getReferenceName()); } }
|
/**
* Removes the index's reference to a property on the given type (if it is
* currently registered). If the property is not registered on the type yet,
* this method will not change internal state.
*
* @param propertyName the name of the property to unregister
* @param type the type to unregister the property on.
*/
|
Removes the index's reference to a property on the given type (if it is currently registered). If the property is not registered on the type yet, this method will not change internal state
|
unregisterPropertyOnType
|
{
"repo_name": "abdullah38rcc/closure-compiler",
"path": "src/com/google/javascript/rhino/jstype/JSTypeRegistry.java",
"license": "apache-2.0",
"size": 63642
}
|
[
"java.util.Map"
] |
import java.util.Map;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 546,002
|
@Deployment(testable = false)
public static WebArchive deployment() {
return Deployments.contacts();
}
|
@Deployment(testable = false) static WebArchive function() { return Deployments.contacts(); }
|
/**
* Creates deployment which is sent to the container upon test's start.
*
* @return war file which is deployed while testing, the whole application in our case
*/
|
Creates deployment which is sent to the container upon test's start
|
deployment
|
{
"repo_name": "talamer/talamer-quickstarts",
"path": "contacts-postgres/functional-tests/src/test/java/org/jboss/as/quickstarts/contacts/test/ContactsMobileBasicTest.java",
"license": "apache-2.0",
"size": 7440
}
|
[
"org.jboss.arquillian.container.test.api.Deployment",
"org.jboss.shrinkwrap.api.spec.WebArchive"
] |
import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.shrinkwrap.api.spec.WebArchive;
|
import org.jboss.arquillian.container.test.api.*; import org.jboss.shrinkwrap.api.spec.*;
|
[
"org.jboss.arquillian",
"org.jboss.shrinkwrap"
] |
org.jboss.arquillian; org.jboss.shrinkwrap;
| 1,462,301
|
public void updateTime (String columnName, Time columnValue) throws SQLException
{
validateResultSet();
resultSet_.updateTime(columnName, columnValue);
eventSupport_.fireRowChanged(new RowSetEvent(this));
}
|
void function (String columnName, Time columnValue) throws SQLException { validateResultSet(); resultSet_.updateTime(columnName, columnValue); eventSupport_.fireRowChanged(new RowSetEvent(this)); }
|
/**
* Updates a column in the current row using a java.sql.Time value.
* The driver converts this to an SQL TIME value.
*
* <p>This does not update the database directly. Instead, it updates
* a copy of the data in memory. Call updateRow() or insertRow() to
* update the database.
*
* @param columnName The column name.
* @param columnValue The column value or null to update
* the value to SQL NULL.
*
* @exception SQLException If the result set is not open,
* the result set is not updatable,
* the cursor is not positioned on a row,
* the column name is not found, or the
* requested conversion is not valid.
**/
|
Updates a column in the current row using a java.sql.Time value. The driver converts this to an SQL TIME value. This does not update the database directly. Instead, it updates a copy of the data in memory. Call updateRow() or insertRow() to update the database
|
updateTime
|
{
"repo_name": "piguangming/jt400",
"path": "cvsroot/src/com/ibm/as400/access/AS400JDBCRowSet.java",
"license": "epl-1.0",
"size": 311708
}
|
[
"java.sql.SQLException",
"java.sql.Time",
"javax.sql.RowSetEvent"
] |
import java.sql.SQLException; import java.sql.Time; import javax.sql.RowSetEvent;
|
import java.sql.*; import javax.sql.*;
|
[
"java.sql",
"javax.sql"
] |
java.sql; javax.sql;
| 2,810,466
|
public void initializeBlockRecovery(BlockInfo blockInfo, long recoveryId) {
setBlockUCState(BlockUCState.UNDER_RECOVERY);
blockRecoveryId = recoveryId;
if (replicas == null || replicas.length == 0) {
NameNode.blockStateChangeLog.warn("BLOCK*" +
" BlockUnderConstructionFeature.initializeBlockRecovery:" +
" No blocks found, lease removed.");
// sets primary node index and return.
primaryNodeIndex = -1;
return;
}
boolean allLiveReplicasTriedAsPrimary = true;
for (ReplicaUnderConstruction replica : replicas) {
// Check if all replicas have been tried or not.
if (replica.isAlive()) {
allLiveReplicasTriedAsPrimary = allLiveReplicasTriedAsPrimary
&& replica.getChosenAsPrimary();
}
}
if (allLiveReplicasTriedAsPrimary) {
// Just set all the replicas to be chosen whether they are alive or not.
for (ReplicaUnderConstruction replica : replicas) {
replica.setChosenAsPrimary(false);
}
}
long mostRecentLastUpdate = 0;
ReplicaUnderConstruction primary = null;
primaryNodeIndex = -1;
for (int i = 0; i < replicas.length; i++) {
// Skip alive replicas which have been chosen for recovery.
if (!(replicas[i].isAlive() && !replicas[i].getChosenAsPrimary())) {
continue;
}
final ReplicaUnderConstruction ruc = replicas[i];
final long lastUpdate = ruc.getExpectedStorageLocation()
.getDatanodeDescriptor().getLastUpdateMonotonic();
if (lastUpdate > mostRecentLastUpdate) {
primaryNodeIndex = i;
primary = ruc;
mostRecentLastUpdate = lastUpdate;
}
}
if (primary != null) {
primary.getExpectedStorageLocation().getDatanodeDescriptor()
.addBlockToBeRecovered(blockInfo);
primary.setChosenAsPrimary(true);
NameNode.blockStateChangeLog.debug(
"BLOCK* {} recovery started, primary={}", this, primary);
}
}
|
void function(BlockInfo blockInfo, long recoveryId) { setBlockUCState(BlockUCState.UNDER_RECOVERY); blockRecoveryId = recoveryId; if (replicas == null replicas.length == 0) { NameNode.blockStateChangeLog.warn(STR + STR + STR); primaryNodeIndex = -1; return; } boolean allLiveReplicasTriedAsPrimary = true; for (ReplicaUnderConstruction replica : replicas) { if (replica.isAlive()) { allLiveReplicasTriedAsPrimary = allLiveReplicasTriedAsPrimary && replica.getChosenAsPrimary(); } } if (allLiveReplicasTriedAsPrimary) { for (ReplicaUnderConstruction replica : replicas) { replica.setChosenAsPrimary(false); } } long mostRecentLastUpdate = 0; ReplicaUnderConstruction primary = null; primaryNodeIndex = -1; for (int i = 0; i < replicas.length; i++) { if (!(replicas[i].isAlive() && !replicas[i].getChosenAsPrimary())) { continue; } final ReplicaUnderConstruction ruc = replicas[i]; final long lastUpdate = ruc.getExpectedStorageLocation() .getDatanodeDescriptor().getLastUpdateMonotonic(); if (lastUpdate > mostRecentLastUpdate) { primaryNodeIndex = i; primary = ruc; mostRecentLastUpdate = lastUpdate; } } if (primary != null) { primary.getExpectedStorageLocation().getDatanodeDescriptor() .addBlockToBeRecovered(blockInfo); primary.setChosenAsPrimary(true); NameNode.blockStateChangeLog.debug( STR, this, primary); } }
|
/**
* Initialize lease recovery for this block.
* Find the first alive data-node starting from the previous primary and
* make it primary.
*/
|
Initialize lease recovery for this block. Find the first alive data-node starting from the previous primary and make it primary
|
initializeBlockRecovery
|
{
"repo_name": "anjuncc/hadoop",
"path": "hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockUnderConstructionFeature.java",
"license": "apache-2.0",
"size": 9610
}
|
[
"org.apache.hadoop.hdfs.server.common.HdfsServerConstants",
"org.apache.hadoop.hdfs.server.namenode.NameNode"
] |
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants; import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
import org.apache.hadoop.hdfs.server.common.*; import org.apache.hadoop.hdfs.server.namenode.*;
|
[
"org.apache.hadoop"
] |
org.apache.hadoop;
| 877,183
|
public final boolean hasListOfListOfStrings() {
return listOfListOfStrings != null && !(listOfListOfStrings instanceof SdkAutoConstructList);
}
|
final boolean function() { return listOfListOfStrings != null && !(listOfListOfStrings instanceof SdkAutoConstructList); }
|
/**
* Returns true if the ListOfListOfStrings property was specified by the sender (it may be empty), or false if the
* sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS
* service.
*/
|
Returns true if the ListOfListOfStrings property was specified by the sender (it may be empty), or false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service
|
hasListOfListOfStrings
|
{
"repo_name": "aws/aws-sdk-java-v2",
"path": "codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersresponse.java",
"license": "apache-2.0",
"size": 23410
}
|
[
"software.amazon.awssdk.core.util.SdkAutoConstructList"
] |
import software.amazon.awssdk.core.util.SdkAutoConstructList;
|
import software.amazon.awssdk.core.util.*;
|
[
"software.amazon.awssdk"
] |
software.amazon.awssdk;
| 35,806
|
public MongoDbLinkedService withUsername(Object username) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new MongoDbLinkedServiceTypeProperties();
}
this.innerTypeProperties().withUsername(username);
return this;
}
|
MongoDbLinkedService function(Object username) { if (this.innerTypeProperties() == null) { this.innerTypeProperties = new MongoDbLinkedServiceTypeProperties(); } this.innerTypeProperties().withUsername(username); return this; }
|
/**
* Set the username property: Username for authentication. Type: string (or Expression with resultType string).
*
* @param username the username value to set.
* @return the MongoDbLinkedService object itself.
*/
|
Set the username property: Username for authentication. Type: string (or Expression with resultType string)
|
withUsername
|
{
"repo_name": "Azure/azure-sdk-for-java",
"path": "sdk/datafactory/azure-resourcemanager-datafactory/src/main/java/com/azure/resourcemanager/datafactory/models/MongoDbLinkedService.java",
"license": "mit",
"size": 12530
}
|
[
"com.azure.resourcemanager.datafactory.fluent.models.MongoDbLinkedServiceTypeProperties"
] |
import com.azure.resourcemanager.datafactory.fluent.models.MongoDbLinkedServiceTypeProperties;
|
import com.azure.resourcemanager.datafactory.fluent.models.*;
|
[
"com.azure.resourcemanager"
] |
com.azure.resourcemanager;
| 299,369
|
public void setFullWidthWithHeight() {
setFullWidthWithHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
}
|
void function() { setFullWidthWithHeight(ViewGroup.LayoutParams.WRAP_CONTENT); }
|
/**
* Set full span with {@link ViewGroup.LayoutParams#WRAP_CONTENT} height
*/
|
Set full span with <code>ViewGroup.LayoutParams#WRAP_CONTENT</code> height
|
setFullWidthWithHeight
|
{
"repo_name": "Tenor-Inc/tenor-android-core",
"path": "src/main/java/com/tenor/android/core/widget/viewholder/StaggeredGridLayoutItemViewHolder.java",
"license": "apache-2.0",
"size": 4448
}
|
[
"android.view.ViewGroup"
] |
import android.view.ViewGroup;
|
import android.view.*;
|
[
"android.view"
] |
android.view;
| 2,442,084
|
public static void openFolder(String folder) {
Desktop desktop = Desktop.getDesktop();
try {
desktop.open(new File(folder));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
|
static void function(String folder) { Desktop desktop = Desktop.getDesktop(); try { desktop.open(new File(folder)); } catch (IOException e) { e.printStackTrace(); } }
|
/**
* Open folder.
*
* @param folder
* the folder
*/
|
Open folder
|
openFolder
|
{
"repo_name": "cmongis/psfj",
"path": "src/knop/psfj/utils/FileUtils.java",
"license": "gpl-3.0",
"size": 5676
}
|
[
"java.awt.Desktop",
"java.io.File",
"java.io.IOException"
] |
import java.awt.Desktop; import java.io.File; import java.io.IOException;
|
import java.awt.*; import java.io.*;
|
[
"java.awt",
"java.io"
] |
java.awt; java.io;
| 48,734
|
public Condition newCondition() {
throw new UnsupportedOperationException();
}
public long getHoldCount() { return sync.getHoldCount(); }
|
Condition function() { throw new UnsupportedOperationException(); } public long getHoldCount() { return sync.getHoldCount(); }
|
/**
* Throws UnsupportedOperationException. SequenceLocks
* do not support Condition objects.
*
* @throws UnsupportedOperationException always
*/
|
Throws UnsupportedOperationException. SequenceLocks do not support Condition objects
|
newCondition
|
{
"repo_name": "nickman/UnsafeAdapter",
"path": "unsafeadapter-core/src/main/java/jsr166e/extra/SequenceLock.java",
"license": "lgpl-2.1",
"size": 23775
}
|
[
"java.util.concurrent.locks.Condition"
] |
import java.util.concurrent.locks.Condition;
|
import java.util.concurrent.locks.*;
|
[
"java.util"
] |
java.util;
| 2,645,005
|
public static OneResponse chmod(Client client, int id,
int owner_u, int owner_m, int owner_a,
int group_u, int group_m, int group_a,
int other_u, int other_m, int other_a)
{
return chmod(client, CHMOD, id,
owner_u, owner_m, owner_a,
group_u, group_m, group_a,
other_u, other_m, other_a);
}
|
static OneResponse function(Client client, int id, int owner_u, int owner_m, int owner_a, int group_u, int group_m, int group_a, int other_u, int other_m, int other_a) { return chmod(client, CHMOD, id, owner_u, owner_m, owner_a, group_u, group_m, group_a, other_u, other_m, other_a); }
|
/**
* Changes the VirtualNetwork permissions
*
* @param client XML-RPC Client.
* @param id The virtual network id (nid) of the target network.
* @param owner_u 1 to allow, 0 deny, -1 do not change
* @param owner_m 1 to allow, 0 deny, -1 do not change
* @param owner_a 1 to allow, 0 deny, -1 do not change
* @param group_u 1 to allow, 0 deny, -1 do not change
* @param group_m 1 to allow, 0 deny, -1 do not change
* @param group_a 1 to allow, 0 deny, -1 do not change
* @param other_u 1 to allow, 0 deny, -1 do not change
* @param other_m 1 to allow, 0 deny, -1 do not change
* @param other_a 1 to allow, 0 deny, -1 do not change
* @return If an error occurs the error message contains the reason.
*/
|
Changes the VirtualNetwork permissions
|
chmod
|
{
"repo_name": "hsanjuan/one",
"path": "src/oca/java/src/org/opennebula/client/vnet/VirtualNetwork.java",
"license": "apache-2.0",
"size": 21150
}
|
[
"org.opennebula.client.Client",
"org.opennebula.client.OneResponse"
] |
import org.opennebula.client.Client; import org.opennebula.client.OneResponse;
|
import org.opennebula.client.*;
|
[
"org.opennebula.client"
] |
org.opennebula.client;
| 1,292,128
|
public ByteString readBytes() throws IOException {
int count = readVarint32();
return readBytes(count);
}
|
ByteString function() throws IOException { int count = readVarint32(); return readBytes(count); }
|
/**
* Reads a {@code bytes} field value from the stream. The length is read from the
* stream prior to the actual data.
*/
|
Reads a bytes field value from the stream. The length is read from the stream prior to the actual data
|
readBytes
|
{
"repo_name": "wakandan/wire",
"path": "wire-runtime/src/main/java/com/squareup/wire/WireInput.java",
"license": "apache-2.0",
"size": 11446
}
|
[
"java.io.IOException"
] |
import java.io.IOException;
|
import java.io.*;
|
[
"java.io"
] |
java.io;
| 956,366
|
public boolean textboxKeyTyped(char p_146201_1_, int p_146201_2_)
{
if(!field_146213_o)
return false;
else
switch(p_146201_1_)
{
case 1:
func_146202_e();
func_146199_i(0);
return true;
case 3:
GuiScreen.setClipboardString(func_146207_c());
return true;
case 22:
if(field_146226_p)
func_146191_b(GuiScreen.getClipboardString());
return true;
case 24:
GuiScreen.setClipboardString(func_146207_c());
if(field_146226_p)
func_146191_b("");
return true;
default:
switch(p_146201_2_)
{
case 14:
if(GuiScreen.isCtrlKeyDown())
{
if(field_146226_p)
func_146177_a(-1);
}else if(field_146226_p)
func_146175_b(-1);
return true;
case 199:
if(GuiScreen.isShiftKeyDown())
func_146199_i(0);
else
func_146196_d();
return true;
case 203:
if(GuiScreen.isShiftKeyDown())
{
if(GuiScreen.isCtrlKeyDown())
func_146199_i(func_146183_a(-1,
func_146186_n()));
else
func_146199_i(func_146186_n() - 1);
}else if(GuiScreen.isCtrlKeyDown())
func_146190_e(func_146187_c(-1));
else
func_146182_d(-1);
return true;
case 205:
if(GuiScreen.isShiftKeyDown())
{
if(GuiScreen.isCtrlKeyDown())
func_146199_i(func_146183_a(1,
func_146186_n()));
else
func_146199_i(func_146186_n() + 1);
}else if(GuiScreen.isCtrlKeyDown())
func_146190_e(func_146187_c(1));
else
func_146182_d(1);
return true;
case 207:
if(GuiScreen.isShiftKeyDown())
func_146199_i(field_146216_j.length());
else
func_146202_e();
return true;
case 211:
if(GuiScreen.isCtrlKeyDown())
{
if(field_146226_p)
func_146177_a(1);
}else if(field_146226_p)
func_146175_b(1);
return true;
default:
if(ChatAllowedCharacters
.isAllowedCharacter(p_146201_1_))
{
if(field_146226_p)
func_146191_b(Character
.toString(p_146201_1_));
return true;
}else
return false;
}
}
}
|
boolean function(char p_146201_1_, int p_146201_2_) { if(!field_146213_o) return false; else switch(p_146201_1_) { case 1: func_146202_e(); func_146199_i(0); return true; case 3: GuiScreen.setClipboardString(func_146207_c()); return true; case 22: if(field_146226_p) func_146191_b(GuiScreen.getClipboardString()); return true; case 24: GuiScreen.setClipboardString(func_146207_c()); if(field_146226_p) func_146191_b(""); return true; default: switch(p_146201_2_) { case 14: if(GuiScreen.isCtrlKeyDown()) { if(field_146226_p) func_146177_a(-1); }else if(field_146226_p) func_146175_b(-1); return true; case 199: if(GuiScreen.isShiftKeyDown()) func_146199_i(0); else func_146196_d(); return true; case 203: if(GuiScreen.isShiftKeyDown()) { if(GuiScreen.isCtrlKeyDown()) func_146199_i(func_146183_a(-1, func_146186_n())); else func_146199_i(func_146186_n() - 1); }else if(GuiScreen.isCtrlKeyDown()) func_146190_e(func_146187_c(-1)); else func_146182_d(-1); return true; case 205: if(GuiScreen.isShiftKeyDown()) { if(GuiScreen.isCtrlKeyDown()) func_146199_i(func_146183_a(1, func_146186_n())); else func_146199_i(func_146186_n() + 1); }else if(GuiScreen.isCtrlKeyDown()) func_146190_e(func_146187_c(1)); else func_146182_d(1); return true; case 207: if(GuiScreen.isShiftKeyDown()) func_146199_i(field_146216_j.length()); else func_146202_e(); return true; case 211: if(GuiScreen.isCtrlKeyDown()) { if(field_146226_p) func_146177_a(1); }else if(field_146226_p) func_146175_b(1); return true; default: if(ChatAllowedCharacters .isAllowedCharacter(p_146201_1_)) { if(field_146226_p) func_146191_b(Character .toString(p_146201_1_)); return true; }else return false; } } }
|
/**
* Call this method from your GuiScreen to process the keys into the textbox
*/
|
Call this method from your GuiScreen to process the keys into the textbox
|
textboxKeyTyped
|
{
"repo_name": "nerdtron123/Wurst-Client",
"path": "Wurst Client/src/tk/wurst_client/alts/gui/GuiPasswordField.java",
"license": "mpl-2.0",
"size": 14511
}
|
[
"net.minecraft.client.gui.GuiScreen",
"net.minecraft.util.ChatAllowedCharacters"
] |
import net.minecraft.client.gui.GuiScreen; import net.minecraft.util.ChatAllowedCharacters;
|
import net.minecraft.client.gui.*; import net.minecraft.util.*;
|
[
"net.minecraft.client",
"net.minecraft.util"
] |
net.minecraft.client; net.minecraft.util;
| 2,379,973
|
public CreateIndexRequest setAlias(String alias) {
return setAliases(Arrays.asList(alias));
}
|
CreateIndexRequest function(String alias) { return setAliases(Arrays.asList(alias)); }
|
/**
* Also create an alias.
*
* What happens if the alias already exists?
* ES will happily let you create multiple indices with the same alias!
* BUT an index request (i.e. "put this doc into alias") will fail.
*
* See https://www.elastic.co/guide/en/elasticsearch/reference/5.5/indices-create-index.html#create-index-aliases
* @param alias Another name which can be used for this index. The alias if a proxy.
* @return
*/
|
Also create an alias. What happens if the alias already exists? ES will happily let you create multiple indices with the same alias! BUT an index request (i.e. "put this doc into alias") will fail. See HREF
|
setAlias
|
{
"repo_name": "winterstein/elasticsearch-java-client",
"path": "src/com/winterwell/es/client/admin/CreateIndexRequest.java",
"license": "mit",
"size": 8141
}
|
[
"java.util.Arrays"
] |
import java.util.Arrays;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 2,164,722
|
public StorageRandomAccessFile getRandomAccessFile( String mode) throws FileNotFoundException
{
return new CorruptRandomAccessFile(realFile.getRandomAccessFile(mode), (File) realFile);
}
|
StorageRandomAccessFile function( String mode) throws FileNotFoundException { return new CorruptRandomAccessFile(realFile.getRandomAccessFile(mode), (File) realFile); }
|
/**
* Get a random access (read/write) file.
*
* @param mode "r", "rw", "rws", or "rwd". The "rws" and "rwd" modes specify
* that the data is to be written to persistent store,
* consistent with the java.io.RandomAccessFile class
* ("synchronized" with the persistent storage, in the file
* system meaning of the word "synchronized"). However
* the implementation is not required to implement the "rws" or
* "rwd" modes. The implementation may treat "rws" and "rwd" as
* "rw". It is up to the user of this interface to call the
* StorageRandomAccessFile.sync method. If the "rws" or "rwd"
* modes are supported and the RandomAccessFile was opened in
* "rws" or "rwd" mode then the implementation of
* StorageRandomAccessFile.sync need not do anything.
*
* @return an object that can be used for random access to the file.
*
* @exception IllegalArgumentException if the mode argument is not equal to
* one of "r", "rw".
* @exception FileNotFoundException if the file exists but is a directory
* rather than a regular file, or cannot
* be opened or created for any other
* reason .
*/
|
Get a random access (read/write) file
|
getRandomAccessFile
|
{
"repo_name": "papicella/snappy-store",
"path": "gemfirexd/tools/src/testing/java/org/apache/derbyTesting/functionTests/util/corruptio/CorruptFile.java",
"license": "apache-2.0",
"size": 12740
}
|
[
"com.pivotal.gemfirexd.internal.io.StorageRandomAccessFile",
"java.io.File",
"java.io.FileNotFoundException"
] |
import com.pivotal.gemfirexd.internal.io.StorageRandomAccessFile; import java.io.File; import java.io.FileNotFoundException;
|
import com.pivotal.gemfirexd.internal.io.*; import java.io.*;
|
[
"com.pivotal.gemfirexd",
"java.io"
] |
com.pivotal.gemfirexd; java.io;
| 1,845,863
|
RowReport reportOnEndOfLine();
|
RowReport reportOnEndOfLine();
|
/**
* Generates a report on the Row with focus on the end of the row. This is internally used when there is
* a syntax error in the line. It could also be used when there is an error that can not be traced back
* to a single cell.
* @return report on the row with focus on the end of the row
*/
|
Generates a report on the Row with focus on the end of the row. This is internally used when there is a syntax error in the line. It could also be used when there is an error that can not be traced back to a single cell
|
reportOnEndOfLine
|
{
"repo_name": "robert-bor/CSVeed",
"path": "src/main/java/org/csveed/api/Row.java",
"license": "apache-2.0",
"size": 2560
}
|
[
"org.csveed.report.RowReport"
] |
import org.csveed.report.RowReport;
|
import org.csveed.report.*;
|
[
"org.csveed.report"
] |
org.csveed.report;
| 2,402,829
|
public void testGetResultSizeFromMap() throws Exception {
SpringContext.getBean(BusinessObjectService.class).save(buildAccountBalanceFixture());
Map propertyMap = new HashMap();
propertyMap.put(KFSPropertyConstants.UNIVERSITY_FISCAL_YEAR, TestUtils.getFiscalYearForTesting().toString());
Long resultSize = OJBUtility.getResultSizeFromMap(propertyMap, new AccountBalance());
assertTrue("Should be greater than 0 if there are account balance records", resultSize.intValue() > 0);
}
|
void function() throws Exception { SpringContext.getBean(BusinessObjectService.class).save(buildAccountBalanceFixture()); Map propertyMap = new HashMap(); propertyMap.put(KFSPropertyConstants.UNIVERSITY_FISCAL_YEAR, TestUtils.getFiscalYearForTesting().toString()); Long resultSize = OJBUtility.getResultSizeFromMap(propertyMap, new AccountBalance()); assertTrue(STR, resultSize.intValue() > 0); }
|
/**
* Tests the OJBUtility.getResultSizeFromMap method
*
* @throws Exception thrown if any exception is encountered for any reason
*/
|
Tests the OJBUtility.getResultSizeFromMap method
|
testGetResultSizeFromMap
|
{
"repo_name": "quikkian-ua-devops/will-financials",
"path": "kfs-core/src/test/java/org/kuali/kfs/gl/OJBUtilityTest.java",
"license": "agpl-3.0",
"size": 5568
}
|
[
"java.util.HashMap",
"java.util.Map",
"org.kuali.kfs.gl.businessobject.AccountBalance",
"org.kuali.kfs.krad.service.BusinessObjectService",
"org.kuali.kfs.sys.KFSPropertyConstants",
"org.kuali.kfs.sys.context.SpringContext",
"org.kuali.kfs.sys.context.TestUtils"
] |
import java.util.HashMap; import java.util.Map; import org.kuali.kfs.gl.businessobject.AccountBalance; import org.kuali.kfs.krad.service.BusinessObjectService; import org.kuali.kfs.sys.KFSPropertyConstants; import org.kuali.kfs.sys.context.SpringContext; import org.kuali.kfs.sys.context.TestUtils;
|
import java.util.*; import org.kuali.kfs.gl.businessobject.*; import org.kuali.kfs.krad.service.*; import org.kuali.kfs.sys.*; import org.kuali.kfs.sys.context.*;
|
[
"java.util",
"org.kuali.kfs"
] |
java.util; org.kuali.kfs;
| 155,143
|
private static void close(Closeable resource) {
if (resource != null) {
try {
resource.close();
} catch (IOException ignore) {
// Ignore IOException. If you want to handle this anyway, it might be useful to know
// that this will generally only be thrown when the client aborted the request.
}
}
}
// Inner classes ------------------------------------------------------------------------------
protected class Range {
long start;
long end;
long length;
long total;
public Range(long start, long end, long total) {
this.start = start;
this.end = end;
this.length = end - start + 1;
this.total = total;
}
}
|
static void function(Closeable resource) { if (resource != null) { try { resource.close(); } catch (IOException ignore) { } } } protected class Range { long start; long end; long length; long total; public Range(long start, long end, long total) { this.start = start; this.end = end; this.length = end - start + 1; this.total = total; } }
|
/**
* Close the given resource.
* @param resource The resource to be closed.
*/
|
Close the given resource
|
close
|
{
"repo_name": "intirix/openmm-server",
"path": "src/main/java/com/intirix/openmm/server/vfs/FileServlet.java",
"license": "mit",
"size": 18219
}
|
[
"java.io.Closeable",
"java.io.IOException"
] |
import java.io.Closeable; import java.io.IOException;
|
import java.io.*;
|
[
"java.io"
] |
java.io;
| 1,587,557
|
public void restoreSnapshot(final RestoreRequest request, final ActionListener<RestoreInfo> listener) {
try {
// Read snapshot info and metadata from the repository
Repository repository = repositoriesService.repository(request.repository());
final SnapshotId snapshotId = new SnapshotId(request.repository(), request.name());
final Snapshot snapshot = repository.readSnapshot(snapshotId);
List<String> filteredIndices = SnapshotUtils.filterIndices(snapshot.indices(), request.indices(), request.indicesOptions());
MetaData metaDataIn = repository.readSnapshotMetaData(snapshotId, snapshot, filteredIndices);
final MetaData metaData;
if (snapshot.version().before(Version.V_2_0_0_beta1)) {
// ES 2.0 now requires units for all time and byte-sized settings, so we add the default unit if it's missing in this snapshot:
metaData = MetaData.addDefaultUnitsIfNeeded(logger, metaDataIn);
} else {
// Units are already enforced:
metaData = metaDataIn;
}
// Make sure that we can restore from this snapshot
validateSnapshotRestorable(snapshotId, snapshot);
// Find list of indices that we need to restore
final Map<String, String> renamedIndices = renamedIndices(request, filteredIndices);
// Now we can start the actual restore process by adding shards to be recovered in the cluster state
// and updating cluster metadata (global and index) as needed
clusterService.submitStateUpdateTask(request.cause(), new ClusterStateUpdateTask() {
RestoreInfo restoreInfo = null;
|
void function(final RestoreRequest request, final ActionListener<RestoreInfo> listener) { try { Repository repository = repositoriesService.repository(request.repository()); final SnapshotId snapshotId = new SnapshotId(request.repository(), request.name()); final Snapshot snapshot = repository.readSnapshot(snapshotId); List<String> filteredIndices = SnapshotUtils.filterIndices(snapshot.indices(), request.indices(), request.indicesOptions()); MetaData metaDataIn = repository.readSnapshotMetaData(snapshotId, snapshot, filteredIndices); final MetaData metaData; if (snapshot.version().before(Version.V_2_0_0_beta1)) { metaData = MetaData.addDefaultUnitsIfNeeded(logger, metaDataIn); } else { metaData = metaDataIn; } validateSnapshotRestorable(snapshotId, snapshot); final Map<String, String> renamedIndices = renamedIndices(request, filteredIndices); clusterService.submitStateUpdateTask(request.cause(), new ClusterStateUpdateTask() { RestoreInfo restoreInfo = null;
|
/**
* Restores snapshot specified in the restore request.
*
* @param request restore request
* @param listener restore listener
*/
|
Restores snapshot specified in the restore request
|
restoreSnapshot
|
{
"repo_name": "xingguang2013/elasticsearch",
"path": "core/src/main/java/org/elasticsearch/snapshots/RestoreService.java",
"license": "apache-2.0",
"size": 54628
}
|
[
"java.util.List",
"java.util.Map",
"org.elasticsearch.Version",
"org.elasticsearch.action.ActionListener",
"org.elasticsearch.cluster.ClusterStateUpdateTask",
"org.elasticsearch.cluster.metadata.MetaData",
"org.elasticsearch.cluster.metadata.SnapshotId",
"org.elasticsearch.repositories.Repository"
] |
import java.util.List; import java.util.Map; import org.elasticsearch.Version; import org.elasticsearch.action.ActionListener; import org.elasticsearch.cluster.ClusterStateUpdateTask; import org.elasticsearch.cluster.metadata.MetaData; import org.elasticsearch.cluster.metadata.SnapshotId; import org.elasticsearch.repositories.Repository;
|
import java.util.*; import org.elasticsearch.*; import org.elasticsearch.action.*; import org.elasticsearch.cluster.*; import org.elasticsearch.cluster.metadata.*; import org.elasticsearch.repositories.*;
|
[
"java.util",
"org.elasticsearch",
"org.elasticsearch.action",
"org.elasticsearch.cluster",
"org.elasticsearch.repositories"
] |
java.util; org.elasticsearch; org.elasticsearch.action; org.elasticsearch.cluster; org.elasticsearch.repositories;
| 1,097,482
|
public void addRequestAccepted(Player target)
{
player.sendMessage(ChatColor.AQUA + target.getDisplayName() +
" added to troupe.");
ActorAPI.getAuthor(player).getTroupeMembers().add(target);
}
|
void function(Player target) { player.sendMessage(ChatColor.AQUA + target.getDisplayName() + STR); ActorAPI.getAuthor(player).getTroupeMembers().add(target); }
|
/**
* Once the player confirms they are in the troupe, add them to the troupe set.
* @param target
* @return
*/
|
Once the player confirms they are in the troupe, add them to the troupe set
|
addRequestAccepted
|
{
"repo_name": "weinberg/Actor",
"path": "src/com/insofar/actor/commands/author/Troupe.java",
"license": "gpl-3.0",
"size": 6442
}
|
[
"com.insofar.actor.ActorAPI",
"org.bukkit.ChatColor",
"org.bukkit.entity.Player"
] |
import com.insofar.actor.ActorAPI; import org.bukkit.ChatColor; import org.bukkit.entity.Player;
|
import com.insofar.actor.*; import org.bukkit.*; import org.bukkit.entity.*;
|
[
"com.insofar.actor",
"org.bukkit",
"org.bukkit.entity"
] |
com.insofar.actor; org.bukkit; org.bukkit.entity;
| 1,978,555
|
ServiceResponse<A> get200ModelA202Valid() throws ServiceException, IOException;
|
ServiceResponse<A> get200ModelA202Valid() throws ServiceException, IOException;
|
/**
* Send a 202 response with payload {'statusCode': '202'}.
*
* @throws ServiceException exception thrown from REST call
* @throws IOException exception thrown from serialization/deserialization
* @return the A object wrapped in {@link ServiceResponse} if successful.
*/
|
Send a 202 response with payload {'statusCode': '202'}
|
get200ModelA202Valid
|
{
"repo_name": "brodyberg/autorest",
"path": "AutoRest/Generators/Java/Java.Tests/src/main/java/fixtures/http/MultipleResponsesOperations.java",
"license": "mit",
"size": 29440
}
|
[
"com.microsoft.rest.ServiceException",
"com.microsoft.rest.ServiceResponse",
"java.io.IOException"
] |
import com.microsoft.rest.ServiceException; import com.microsoft.rest.ServiceResponse; import java.io.IOException;
|
import com.microsoft.rest.*; import java.io.*;
|
[
"com.microsoft.rest",
"java.io"
] |
com.microsoft.rest; java.io;
| 2,102,805
|
String issuerName = certificate.getIssuerX500Principal().getName();
BigInteger serialNumber = certificate.getSerialNumber();
addEndEntity(issuerName, serialNumber);
}
|
String issuerName = certificate.getIssuerX500Principal().getName(); BigInteger serialNumber = certificate.getSerialNumber(); addEndEntity(issuerName, serialNumber); }
|
/**
* Adds an end-entity certificate to the set of allowed certificates.
*
* @param certificate
* the X509 end-entity certificate.
*/
|
Adds an end-entity certificate to the set of allowed certificates
|
addEndEntity
|
{
"repo_name": "tectronics/jtrust",
"path": "jtrust-lib/src/main/java/be/fedict/trust/constraints/EndEntityCertificateConstraint.java",
"license": "gpl-3.0",
"size": 3275
}
|
[
"java.math.BigInteger"
] |
import java.math.BigInteger;
|
import java.math.*;
|
[
"java.math"
] |
java.math;
| 1,080,620
|
public void notifyNodeFailures(Collection<String> deadNodes) {
try {
jobRun.getPartitionMatchMaker().notifyNodeFailures(deadNodes);
jobRun.getParticipatingNodeIds().removeAll(deadNodes);
jobRun.getCleanupPendingNodeIds().removeAll(deadNodes);
if (jobRun.getPendingStatus() != null && jobRun.getCleanupPendingNodeIds().isEmpty()) {
IJobManager jobManager = ccs.getJobManager();
jobManager.finalComplete(jobRun);
return;
}
abortOngoingTaskClusters(ta -> deadNodes.contains(ta.getNodeId()),
ta -> HyracksException.create(ErrorCode.NODE_FAILED, ta.getNodeId()));
startRunnableActivityClusters();
} catch (Exception e) {
abortJob(Collections.singletonList(e));
}
}
|
void function(Collection<String> deadNodes) { try { jobRun.getPartitionMatchMaker().notifyNodeFailures(deadNodes); jobRun.getParticipatingNodeIds().removeAll(deadNodes); jobRun.getCleanupPendingNodeIds().removeAll(deadNodes); if (jobRun.getPendingStatus() != null && jobRun.getCleanupPendingNodeIds().isEmpty()) { IJobManager jobManager = ccs.getJobManager(); jobManager.finalComplete(jobRun); return; } abortOngoingTaskClusters(ta -> deadNodes.contains(ta.getNodeId()), ta -> HyracksException.create(ErrorCode.NODE_FAILED, ta.getNodeId())); startRunnableActivityClusters(); } catch (Exception e) { abortJob(Collections.singletonList(e)); } }
|
/**
* Indicates that the provided set of nodes have left the cluster.
*
* @param deadNodes
* - Set of failed nodes
*/
|
Indicates that the provided set of nodes have left the cluster
|
notifyNodeFailures
|
{
"repo_name": "heriram/incubator-asterixdb",
"path": "hyracks-fullstack/hyracks/hyracks-control/hyracks-control-cc/src/main/java/org/apache/hyracks/control/cc/executor/JobExecutor.java",
"license": "apache-2.0",
"size": 36295
}
|
[
"java.util.Collection",
"java.util.Collections",
"org.apache.hyracks.api.exceptions.ErrorCode",
"org.apache.hyracks.api.exceptions.HyracksException",
"org.apache.hyracks.control.cc.job.IJobManager"
] |
import java.util.Collection; import java.util.Collections; import org.apache.hyracks.api.exceptions.ErrorCode; import org.apache.hyracks.api.exceptions.HyracksException; import org.apache.hyracks.control.cc.job.IJobManager;
|
import java.util.*; import org.apache.hyracks.api.exceptions.*; import org.apache.hyracks.control.cc.job.*;
|
[
"java.util",
"org.apache.hyracks"
] |
java.util; org.apache.hyracks;
| 2,673,744
|
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux<PollResult<NetworkInterfaceInner>, NetworkInterfaceInner> beginCreateOrUpdateAsync(
String resourceGroupName, String networkInterfaceName, NetworkInterfaceInner parameters);
|
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux<PollResult<NetworkInterfaceInner>, NetworkInterfaceInner> beginCreateOrUpdateAsync( String resourceGroupName, String networkInterfaceName, NetworkInterfaceInner parameters);
|
/**
* Creates or updates a network interface.
*
* @param resourceGroupName The name of the resource group.
* @param networkInterfaceName The name of the network interface.
* @param parameters Parameters supplied to the create or update network interface operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link PollerFlux} for polling of a network interface in a resource group.
*/
|
Creates or updates a network interface
|
beginCreateOrUpdateAsync
|
{
"repo_name": "Azure/azure-sdk-for-java",
"path": "sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/NetworkInterfacesClient.java",
"license": "mit",
"size": 71039
}
|
[
"com.azure.core.annotation.ReturnType",
"com.azure.core.annotation.ServiceMethod",
"com.azure.core.management.polling.PollResult",
"com.azure.core.util.polling.PollerFlux",
"com.azure.resourcemanager.network.fluent.models.NetworkInterfaceInner"
] |
import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; import com.azure.core.management.polling.PollResult; import com.azure.core.util.polling.PollerFlux; import com.azure.resourcemanager.network.fluent.models.NetworkInterfaceInner;
|
import com.azure.core.annotation.*; import com.azure.core.management.polling.*; import com.azure.core.util.polling.*; import com.azure.resourcemanager.network.fluent.models.*;
|
[
"com.azure.core",
"com.azure.resourcemanager"
] |
com.azure.core; com.azure.resourcemanager;
| 1,861,959
|
private void checkIndexCounter(List<AbstractPlanNode> pn, boolean isReplaceable) {
assertTrue(pn.size() > 0);
for ( AbstractPlanNode nd : pn) {
System.out.println("PlanNode Explain string:\n" + nd.toExplainPlanString());
}
AbstractPlanNode p = pn.get(0).getChild(0);
if (isReplaceable)
assertTrue(p instanceof IndexCountPlanNode);
else
assertTrue((p instanceof IndexCountPlanNode) == false);
}
|
void function(List<AbstractPlanNode> pn, boolean isReplaceable) { assertTrue(pn.size() > 0); for ( AbstractPlanNode nd : pn) { System.out.println(STR + nd.toExplainPlanString()); } AbstractPlanNode p = pn.get(0).getChild(0); if (isReplaceable) assertTrue(p instanceof IndexCountPlanNode); else assertTrue((p instanceof IndexCountPlanNode) == false); }
|
/**
* Check Whether or not the original plan is replaced with CountingIndexPlanNode.
*
* @param pn
* The generated plan
* @param isReplaceable
* Whether or not the original plan is replaced with CountingIndexPlanNode
*/
|
Check Whether or not the original plan is replaced with CountingIndexPlanNode
|
checkIndexCounter
|
{
"repo_name": "zheguang/voltdb",
"path": "tests/frontend/org/voltdb/planner/TestReplaceWithIndexCounter.java",
"license": "agpl-3.0",
"size": 12582
}
|
[
"java.util.List",
"org.voltdb.plannodes.AbstractPlanNode",
"org.voltdb.plannodes.IndexCountPlanNode"
] |
import java.util.List; import org.voltdb.plannodes.AbstractPlanNode; import org.voltdb.plannodes.IndexCountPlanNode;
|
import java.util.*; import org.voltdb.plannodes.*;
|
[
"java.util",
"org.voltdb.plannodes"
] |
java.util; org.voltdb.plannodes;
| 2,834,940
|
synchronized void incrementSafeBlockCount(int storageNum,
BlockInfo storedBlock) {
assert namesystem.hasWriteLock();
if (status == BMSafeModeStatus.OFF) {
return;
}
final int safe = storedBlock.isStriped() ?
((BlockInfoStriped)storedBlock).getRealDataBlockNum() : safeReplication;
if (storageNum == safe) {
this.blockSafe++;
// Report startup progress only if we haven't completed startup yet.
StartupProgress prog = NameNode.getStartupProgress();
if (prog.getStatus(Phase.SAFEMODE) != Status.COMPLETE) {
if (this.awaitingReportedBlocksCounter == null) {
this.awaitingReportedBlocksCounter = prog.getCounter(Phase.SAFEMODE,
STEP_AWAITING_REPORTED_BLOCKS);
}
this.awaitingReportedBlocksCounter.increment();
}
checkSafeMode();
}
}
|
synchronized void incrementSafeBlockCount(int storageNum, BlockInfo storedBlock) { assert namesystem.hasWriteLock(); if (status == BMSafeModeStatus.OFF) { return; } final int safe = storedBlock.isStriped() ? ((BlockInfoStriped)storedBlock).getRealDataBlockNum() : safeReplication; if (storageNum == safe) { this.blockSafe++; StartupProgress prog = NameNode.getStartupProgress(); if (prog.getStatus(Phase.SAFEMODE) != Status.COMPLETE) { if (this.awaitingReportedBlocksCounter == null) { this.awaitingReportedBlocksCounter = prog.getCounter(Phase.SAFEMODE, STEP_AWAITING_REPORTED_BLOCKS); } this.awaitingReportedBlocksCounter.increment(); } checkSafeMode(); } }
|
/**
* Increment number of safe blocks if current block has reached minimal
* replication.
* If safe mode is not currently on, this is a no-op.
* @param storageNum current number of replicas or number of internal blocks
* of a striped block group
* @param storedBlock current storedBlock which is either a
* BlockInfoContiguous or a BlockInfoStriped
*/
|
Increment number of safe blocks if current block has reached minimal replication. If safe mode is not currently on, this is a no-op
|
incrementSafeBlockCount
|
{
"repo_name": "dennishuo/hadoop",
"path": "hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockManagerSafeMode.java",
"license": "apache-2.0",
"size": 24122
}
|
[
"org.apache.hadoop.hdfs.server.namenode.NameNode",
"org.apache.hadoop.hdfs.server.namenode.startupprogress.Phase",
"org.apache.hadoop.hdfs.server.namenode.startupprogress.StartupProgress",
"org.apache.hadoop.hdfs.server.namenode.startupprogress.Status"
] |
import org.apache.hadoop.hdfs.server.namenode.NameNode; import org.apache.hadoop.hdfs.server.namenode.startupprogress.Phase; import org.apache.hadoop.hdfs.server.namenode.startupprogress.StartupProgress; import org.apache.hadoop.hdfs.server.namenode.startupprogress.Status;
|
import org.apache.hadoop.hdfs.server.namenode.*; import org.apache.hadoop.hdfs.server.namenode.startupprogress.*;
|
[
"org.apache.hadoop"
] |
org.apache.hadoop;
| 477,631
|
@Test
public void testLoadData() {
String sep = System.getProperty("line.separator");
String fileName = "Address.txt";
String result = instance.loadData(fileName);
String expResult = String.format("%s%s%s%s%s%s", "moscow", sep, "Peter", sep, "Bryansk", sep);
assertEquals(expResult, result);
}
|
void function() { String sep = System.getProperty(STR); String fileName = STR; String result = instance.loadData(fileName); String expResult = String.format(STR, STR, sep, "Peter", sep, STR, sep); assertEquals(expResult, result); }
|
/**
* Test of loadData method, of class AbstractCache.
*/
|
Test of loadData method, of class AbstractCache
|
testLoadData
|
{
"repo_name": "CkimiHoK/JavaFromZeroToJunior",
"path": "javalearning/Chapter6/src/test/java/ru/aveselov/lesson4/AbstractCacheTest.java",
"license": "apache-2.0",
"size": 2224
}
|
[
"org.junit.Assert"
] |
import org.junit.Assert;
|
import org.junit.*;
|
[
"org.junit"
] |
org.junit;
| 597,743
|
protected void addMessages(String bundleName) {
addMessages(new CmsMessages(bundleName, getLocale()));
}
|
void function(String bundleName) { addMessages(new CmsMessages(bundleName, getLocale())); }
|
/**
* Auxiliary method for initialization of messages.<p>
*
* @param bundleName the resource bundle name to add
*/
|
Auxiliary method for initialization of messages
|
addMessages
|
{
"repo_name": "victos/opencms-core",
"path": "src/org/opencms/workplace/CmsWorkplace.java",
"license": "lgpl-2.1",
"size": 80916
}
|
[
"org.opencms.i18n.CmsMessages"
] |
import org.opencms.i18n.CmsMessages;
|
import org.opencms.i18n.*;
|
[
"org.opencms.i18n"
] |
org.opencms.i18n;
| 2,365,474
|
@Override
public void notifyChanged(Notification notification) {
updateChildren(notification);
super.notifyChanged(notification);
}
|
void function(Notification notification) { updateChildren(notification); super.notifyChanged(notification); }
|
/**
* This handles model notifications by calling {@link #updateChildren} to update any cached
* children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
|
This handles model notifications by calling <code>#updateChildren</code> to update any cached children and by creating a viewer notification, which it passes to <code>#fireNotifyChanged</code>.
|
notifyChanged
|
{
"repo_name": "upohl/eloquent",
"path": "examples/seminar/plugins/de.fraunhofer.iem.seminar.edit/src/de/fraunhofer/iem/seminar/provider/AssignmentItemProvider.java",
"license": "epl-1.0",
"size": 4903
}
|
[
"org.eclipse.emf.common.notify.Notification"
] |
import org.eclipse.emf.common.notify.Notification;
|
import org.eclipse.emf.common.notify.*;
|
[
"org.eclipse.emf"
] |
org.eclipse.emf;
| 1,355,654
|
public static boolean validateContinuityOfCareDocumentOneOrTwoRecordTarget(ContinuityOfCareDocument continuityOfCareDocument, DiagnosticChain diagnostics, Map<Object, Object> context) {
if (VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) {
OCL.Helper helper = EOCL_ENV.createOCLHelper();
helper.setContext(CCDPackage.Literals.CONTINUITY_OF_CARE_DOCUMENT);
try {
VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP);
}
catch (ParserException pe) {
throw new UnsupportedOperationException(pe.getLocalizedMessage());
}
}
if (!EOCL_ENV.createQuery(VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(continuityOfCareDocument)) {
if (diagnostics != null) {
diagnostics.add
(new BasicDiagnostic
(Diagnostic.ERROR,
CCDValidator.DIAGNOSTIC_SOURCE,
CCDValidator.CONTINUITY_OF_CARE_DOCUMENT__CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET,
CCDPlugin.INSTANCE.getString("ContinuityOfCareDocumentOneOrTwoRecordTarget"),
new Object [] { continuityOfCareDocument }));
}
return false;
}
return true;
}
protected static final String VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_HAS_ASSIGNED_AUTHOR__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = "self.author->exists(author : cda::Author | not author.assignedAuthor.assignedPerson.oclIsUndefined() "+
" or not author.assignedAuthor.representedOrganization.oclIsUndefined())";
protected static Constraint VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_HAS_ASSIGNED_AUTHOR__DIAGNOSTIC_CHAIN_MAP__EOCL_INV;
|
static boolean function(ContinuityOfCareDocument continuityOfCareDocument, DiagnosticChain diagnostics, Map<Object, Object> context) { if (VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV == null) { OCL.Helper helper = EOCL_ENV.createOCLHelper(); helper.setContext(CCDPackage.Literals.CONTINUITY_OF_CARE_DOCUMENT); try { VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV = helper.createInvariant(VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP); } catch (ParserException pe) { throw new UnsupportedOperationException(pe.getLocalizedMessage()); } } if (!EOCL_ENV.createQuery(VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET__DIAGNOSTIC_CHAIN_MAP__EOCL_INV).check(continuityOfCareDocument)) { if (diagnostics != null) { diagnostics.add (new BasicDiagnostic (Diagnostic.ERROR, CCDValidator.DIAGNOSTIC_SOURCE, CCDValidator.CONTINUITY_OF_CARE_DOCUMENT__CONTINUITY_OF_CARE_DOCUMENT_ONE_OR_TWO_RECORD_TARGET, CCDPlugin.INSTANCE.getString(STR), new Object [] { continuityOfCareDocument })); } return false; } return true; } protected static final String VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_HAS_ASSIGNED_AUTHOR__DIAGNOSTIC_CHAIN_MAP__EOCL_EXP = STR+ STR; protected static Constraint VALIDATE_CONTINUITY_OF_CARE_DOCUMENT_HAS_ASSIGNED_AUTHOR__DIAGNOSTIC_CHAIN_MAP__EOCL_INV;
|
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* self.recordTarget->size() = 1 or self.recordTarget->size() =2
* @param continuityOfCareDocument The receiving '<em><b>Continuity Of Care Document</b></em>' model object.
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
* <!-- end-model-doc -->
* @generated
*/
|
self.recordTarget->size() = 1 or self.recordTarget->size() =2
|
validateContinuityOfCareDocumentOneOrTwoRecordTarget
|
{
"repo_name": "drbgfc/mdht",
"path": "cda/deprecated/org.openhealthtools.mdht.uml.cda.ccd/src/org/openhealthtools/mdht/uml/cda/ccd/operations/ContinuityOfCareDocumentOperations.java",
"license": "epl-1.0",
"size": 135771
}
|
[
"java.util.Map",
"org.eclipse.emf.common.util.BasicDiagnostic",
"org.eclipse.emf.common.util.Diagnostic",
"org.eclipse.emf.common.util.DiagnosticChain",
"org.eclipse.ocl.ParserException",
"org.eclipse.ocl.ecore.Constraint",
"org.openhealthtools.mdht.uml.cda.ccd.CCDPackage",
"org.openhealthtools.mdht.uml.cda.ccd.CCDPlugin",
"org.openhealthtools.mdht.uml.cda.ccd.ContinuityOfCareDocument",
"org.openhealthtools.mdht.uml.cda.ccd.util.CCDValidator"
] |
import java.util.Map; import org.eclipse.emf.common.util.BasicDiagnostic; import org.eclipse.emf.common.util.Diagnostic; import org.eclipse.emf.common.util.DiagnosticChain; import org.eclipse.ocl.ParserException; import org.eclipse.ocl.ecore.Constraint; import org.openhealthtools.mdht.uml.cda.ccd.CCDPackage; import org.openhealthtools.mdht.uml.cda.ccd.CCDPlugin; import org.openhealthtools.mdht.uml.cda.ccd.ContinuityOfCareDocument; import org.openhealthtools.mdht.uml.cda.ccd.util.CCDValidator;
|
import java.util.*; import org.eclipse.emf.common.util.*; import org.eclipse.ocl.*; import org.eclipse.ocl.ecore.*; import org.openhealthtools.mdht.uml.cda.ccd.*; import org.openhealthtools.mdht.uml.cda.ccd.util.*;
|
[
"java.util",
"org.eclipse.emf",
"org.eclipse.ocl",
"org.openhealthtools.mdht"
] |
java.util; org.eclipse.emf; org.eclipse.ocl; org.openhealthtools.mdht;
| 154,230
|
@Override
public MappableBlock load(long length, FileInputStream blockIn,
FileInputStream metaIn, String blockFileName,
ExtendedBlockId key)
throws IOException {
NativePmemMappedBlock mappableBlock = null;
POSIX.PmemMappedRegion region = null;
String filePath = null;
try (FileChannel blockChannel = blockIn.getChannel()) {
if (blockChannel == null) {
throw new IOException("Block InputStream has no FileChannel.");
}
assert NativeIO.isAvailable();
filePath = PmemVolumeManager.getInstance().getCachePath(key);
region = POSIX.Pmem.mapBlock(filePath, length, false);
if (region == null) {
throw new IOException("Failed to map the block " + blockFileName +
" to persistent storage.");
}
verifyChecksumAndMapBlock(region, length, metaIn, blockChannel,
blockFileName);
mappableBlock = new NativePmemMappedBlock(region.getAddress(),
region.getLength(), key);
LOG.info("Successfully cached one replica:{} into persistent memory"
+ ", [cached path={}, address={}, length={}]", key, filePath,
region.getAddress(), length);
} finally {
if (mappableBlock == null) {
if (region != null) {
// unmap content from persistent memory
POSIX.Pmem.unmapBlock(region.getAddress(),
region.getLength());
FsDatasetUtil.deleteMappedFile(filePath);
}
}
}
return mappableBlock;
}
|
MappableBlock function(long length, FileInputStream blockIn, FileInputStream metaIn, String blockFileName, ExtendedBlockId key) throws IOException { NativePmemMappedBlock mappableBlock = null; POSIX.PmemMappedRegion region = null; String filePath = null; try (FileChannel blockChannel = blockIn.getChannel()) { if (blockChannel == null) { throw new IOException(STR); } assert NativeIO.isAvailable(); filePath = PmemVolumeManager.getInstance().getCachePath(key); region = POSIX.Pmem.mapBlock(filePath, length, false); if (region == null) { throw new IOException(STR + blockFileName + STR); } verifyChecksumAndMapBlock(region, length, metaIn, blockChannel, blockFileName); mappableBlock = new NativePmemMappedBlock(region.getAddress(), region.getLength(), key); LOG.info(STR + STR, key, filePath, region.getAddress(), length); } finally { if (mappableBlock == null) { if (region != null) { POSIX.Pmem.unmapBlock(region.getAddress(), region.getLength()); FsDatasetUtil.deleteMappedFile(filePath); } } } return mappableBlock; }
|
/**
* Load the block.
*
* Map the block and verify its checksum.
*
* The block will be mapped to PmemDir/BlockPoolId/subdir#/subdir#/BlockId,
* in which PmemDir is a persistent memory volume chosen by PmemVolumeManager.
*
* @param length The current length of the block.
* @param blockIn The block input stream. Should be positioned at the
* start. The caller must close this.
* @param metaIn The meta file input stream. Should be positioned at
* the start. The caller must close this.
* @param blockFileName The block file name, for logging purposes.
* @param key The extended block ID.
*
* @throws IOException If mapping block to persistent memory fails or
* checksum fails.
*
* @return The Mappable block.
*/
|
Load the block. Map the block and verify its checksum. The block will be mapped to PmemDir/BlockPoolId/subdir#/subdir#/BlockId, in which PmemDir is a persistent memory volume chosen by PmemVolumeManager
|
load
|
{
"repo_name": "apurtell/hadoop",
"path": "hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/NativePmemMappableBlockLoader.java",
"license": "apache-2.0",
"size": 8260
}
|
[
"java.io.FileInputStream",
"java.io.IOException",
"java.nio.channels.FileChannel",
"org.apache.hadoop.hdfs.ExtendedBlockId",
"org.apache.hadoop.io.nativeio.NativeIO"
] |
import java.io.FileInputStream; import java.io.IOException; import java.nio.channels.FileChannel; import org.apache.hadoop.hdfs.ExtendedBlockId; import org.apache.hadoop.io.nativeio.NativeIO;
|
import java.io.*; import java.nio.channels.*; import org.apache.hadoop.hdfs.*; import org.apache.hadoop.io.nativeio.*;
|
[
"java.io",
"java.nio",
"org.apache.hadoop"
] |
java.io; java.nio; org.apache.hadoop;
| 1,151,997
|
@Test(expected = ParseException.class)
public void testDayOfYearNull() {
Object result = run("DAY_OF_YEAR(nada)");
}
|
@Test(expected = ParseException.class) void function() { Object result = run(STR); }
|
/**
* If refer to variable that does not exist, expect ParseException.
*/
|
If refer to variable that does not exist, expect ParseException
|
testDayOfYearNull
|
{
"repo_name": "cestella/incubator-metron",
"path": "metron-stellar/stellar-common/src/test/java/org/apache/metron/stellar/dsl/functions/DateFunctionsTest.java",
"license": "apache-2.0",
"size": 6058
}
|
[
"org.apache.metron.stellar.dsl.ParseException",
"org.junit.Test"
] |
import org.apache.metron.stellar.dsl.ParseException; import org.junit.Test;
|
import org.apache.metron.stellar.dsl.*; import org.junit.*;
|
[
"org.apache.metron",
"org.junit"
] |
org.apache.metron; org.junit;
| 2,661,085
|
public static Expectations getCsvExportParameterExpectations(
final HttpServletResponse response,
final RhnMockServletOutputStream out) throws IOException {
return new Expectations() { {
atLeast(1).of(response).getCharacterEncoding();
will(returnValue("UTF-8"));
atLeast(1).of(response).setContentType("text/csv;charset=UTF-8");
atLeast(1).of(response).setHeader("Content-Disposition",
"attachment; filename=download.csv");
atLeast(1).of(response).getOutputStream();
will(returnValue(out));
} };
}
|
static Expectations function( final HttpServletResponse response, final RhnMockServletOutputStream out) throws IOException { return new Expectations() { { atLeast(1).of(response).getCharacterEncoding(); will(returnValue("UTF-8")); atLeast(1).of(response).setContentType(STR); atLeast(1).of(response).setHeader(STR, STR); atLeast(1).of(response).getOutputStream(); will(returnValue(out)); } }; }
|
/**
* Returns the expectations of {@link HttpServletResponse} when CSV Export is performed.
* @param response the response
* @param out - the output stream
* @return the expectations
* @throws IOException if something goes wrong
*/
|
Returns the expectations of <code>HttpServletResponse</code> when CSV Export is performed
|
getCsvExportParameterExpectations
|
{
"repo_name": "jhutar/spacewalk",
"path": "java/code/src/com/redhat/rhn/frontend/taglibs/test/CSVMockTestHelper.java",
"license": "gpl-2.0",
"size": 1820
}
|
[
"com.redhat.rhn.testing.RhnMockServletOutputStream",
"java.io.IOException",
"javax.servlet.http.HttpServletResponse",
"org.jmock.Expectations"
] |
import com.redhat.rhn.testing.RhnMockServletOutputStream; import java.io.IOException; import javax.servlet.http.HttpServletResponse; import org.jmock.Expectations;
|
import com.redhat.rhn.testing.*; import java.io.*; import javax.servlet.http.*; import org.jmock.*;
|
[
"com.redhat.rhn",
"java.io",
"javax.servlet",
"org.jmock"
] |
com.redhat.rhn; java.io; javax.servlet; org.jmock;
| 11,831
|
SecurityContext securityContext = SecurityContextHolder.getContext();
Authentication authentication = securityContext.getAuthentication();
String userName = null;
if (authentication != null) {
if (authentication.getPrincipal() instanceof UserDetails) {
UserDetails springSecurityUser = (UserDetails) authentication.getPrincipal();
userName = springSecurityUser.getUsername();
} else if (authentication.getPrincipal() instanceof String) {
userName = (String) authentication.getPrincipal();
}
}
return userName;
}
|
SecurityContext securityContext = SecurityContextHolder.getContext(); Authentication authentication = securityContext.getAuthentication(); String userName = null; if (authentication != null) { if (authentication.getPrincipal() instanceof UserDetails) { UserDetails springSecurityUser = (UserDetails) authentication.getPrincipal(); userName = springSecurityUser.getUsername(); } else if (authentication.getPrincipal() instanceof String) { userName = (String) authentication.getPrincipal(); } } return userName; }
|
/**
* Get the login of the current user.
*
* @return the login of the current user
*/
|
Get the login of the current user
|
getCurrentUserLogin
|
{
"repo_name": "jlopezjuy/ClothesHipster",
"path": "anelclothesapp/src/main/java/com/anelsoftware/clothes/security/SecurityUtils.java",
"license": "gpl-3.0",
"size": 2593
}
|
[
"org.springframework.security.core.Authentication",
"org.springframework.security.core.context.SecurityContext",
"org.springframework.security.core.context.SecurityContextHolder",
"org.springframework.security.core.userdetails.UserDetails"
] |
import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContext; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.userdetails.UserDetails;
|
import org.springframework.security.core.*; import org.springframework.security.core.context.*; import org.springframework.security.core.userdetails.*;
|
[
"org.springframework.security"
] |
org.springframework.security;
| 1,758,422
|
@ApiModelProperty(example = "null", value = "")
public LocalDate getActiveUntil() {
return activeUntil;
}
|
@ApiModelProperty(example = "null", value = "") LocalDate function() { return activeUntil; }
|
/**
* Get activeUntil
* @return activeUntil
**/
|
Get activeUntil
|
getActiveUntil
|
{
"repo_name": "leanix/leanix-sdk-java",
"path": "src/main/java/net/leanix/api/models/FactSheetRelation.java",
"license": "mit",
"size": 14604
}
|
[
"io.swagger.annotations.ApiModelProperty",
"java.time.LocalDate"
] |
import io.swagger.annotations.ApiModelProperty; import java.time.LocalDate;
|
import io.swagger.annotations.*; import java.time.*;
|
[
"io.swagger.annotations",
"java.time"
] |
io.swagger.annotations; java.time;
| 2,467,810
|
protected SqlValidatorScope getScope() {
return requireNonNull(scopes.peek(), "scopes.peek()");
}
|
SqlValidatorScope function() { return requireNonNull(scopes.peek(), STR); }
|
/**
* Returns the current scope.
*/
|
Returns the current scope
|
getScope
|
{
"repo_name": "datametica/calcite",
"path": "core/src/main/java/org/apache/calcite/sql/validate/SqlScopedShuttle.java",
"license": "apache-2.0",
"size": 2511
}
|
[
"java.util.Objects"
] |
import java.util.Objects;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 1,073,572
|
public static MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType> getPropertyClient(com.mozu.api.DataViewMode dataViewMode, Integer productTypeId, String attributeFQN, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.catalog.admin.attributedefinition.producttypes.ProductTypePropertyUrl.getPropertyUrl(attributeFQN, productTypeId, responseFields);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.productadmin.AttributeInProductType.class;
MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType> mozuClient = (MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
mozuClient.addHeader(Headers.X_VOL_DATAVIEW_MODE ,dataViewMode.toString());
return mozuClient;
}
|
static MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType> function(com.mozu.api.DataViewMode dataViewMode, Integer productTypeId, String attributeFQN, String responseFields) throws Exception { MozuUrl url = com.mozu.api.urls.commerce.catalog.admin.attributedefinition.producttypes.ProductTypePropertyUrl.getPropertyUrl(attributeFQN, productTypeId, responseFields); String verb = "GET"; Class<?> clz = com.mozu.api.contracts.productadmin.AttributeInProductType.class; MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType> mozuClient = (MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType>) MozuClientFactory.getInstance(clz); mozuClient.setVerb(verb); mozuClient.setResourceUrl(url); mozuClient.addHeader(Headers.X_VOL_DATAVIEW_MODE ,dataViewMode.toString()); return mozuClient; }
|
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.productadmin.AttributeInProductType> mozuClient=GetPropertyClient(dataViewMode, productTypeId, attributeFQN, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* AttributeInProductType attributeInProductType = client.Result();
* </code></pre></p>
* @param attributeFQN Fully qualified name for an attribute.
* @param productTypeId Identifier of the product type.
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @param dataViewMode DataViewMode
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.productadmin.AttributeInProductType>
* @see com.mozu.api.contracts.productadmin.AttributeInProductType
*/
|
<code><code> MozuClient mozuClient=GetPropertyClient(dataViewMode, productTypeId, attributeFQN, responseFields); client.setBaseAddress(url); client.executeRequest(); AttributeInProductType attributeInProductType = client.Result(); </code></code>
|
getPropertyClient
|
{
"repo_name": "Mozu/mozu-java",
"path": "mozu-java-core/src/main/java/com/mozu/api/clients/commerce/catalog/admin/attributedefinition/producttypes/ProductTypePropertyClient.java",
"license": "mit",
"size": 13292
}
|
[
"com.mozu.api.DataViewMode",
"com.mozu.api.Headers",
"com.mozu.api.MozuClient",
"com.mozu.api.MozuClientFactory",
"com.mozu.api.MozuUrl"
] |
import com.mozu.api.DataViewMode; import com.mozu.api.Headers; import com.mozu.api.MozuClient; import com.mozu.api.MozuClientFactory; import com.mozu.api.MozuUrl;
|
import com.mozu.api.*;
|
[
"com.mozu.api"
] |
com.mozu.api;
| 878,561
|
@WebMethod(operationName = "deleteAgendaItem")
@CacheEvict(value={AgendaTreeDefinition.Cache.NAME, AgendaDefinition.Cache.NAME, AgendaItemDefinition.Cache.NAME, ContextDefinition.Cache.NAME}, allEntries = true)
public void deleteAgendaItem(@WebParam(name = "id") String id) throws RiceIllegalArgumentException;
|
@WebMethod(operationName = STR) @CacheEvict(value={AgendaTreeDefinition.Cache.NAME, AgendaDefinition.Cache.NAME, AgendaItemDefinition.Cache.NAME, ContextDefinition.Cache.NAME}, allEntries = true) void function(@WebParam(name = "id") String id) throws RiceIllegalArgumentException;
|
/**
* Delete the specified AgendaItem
*
* @param id identifier of the AgendaItem to be deleted
* @throws RiceIllegalArgumentException if the given id is null or invalid
*/
|
Delete the specified AgendaItem
|
deleteAgendaItem
|
{
"repo_name": "mztaylor/rice-git",
"path": "rice-middleware/krms/api/src/main/java/org/kuali/rice/krms/api/repository/RuleManagementService.java",
"license": "apache-2.0",
"size": 61035
}
|
[
"javax.jws.WebMethod",
"javax.jws.WebParam",
"org.kuali.rice.core.api.exception.RiceIllegalArgumentException",
"org.kuali.rice.krms.api.repository.agenda.AgendaDefinition",
"org.kuali.rice.krms.api.repository.agenda.AgendaItemDefinition",
"org.kuali.rice.krms.api.repository.agenda.AgendaTreeDefinition",
"org.kuali.rice.krms.api.repository.context.ContextDefinition",
"org.springframework.cache.annotation.CacheEvict"
] |
import javax.jws.WebMethod; import javax.jws.WebParam; import org.kuali.rice.core.api.exception.RiceIllegalArgumentException; import org.kuali.rice.krms.api.repository.agenda.AgendaDefinition; import org.kuali.rice.krms.api.repository.agenda.AgendaItemDefinition; import org.kuali.rice.krms.api.repository.agenda.AgendaTreeDefinition; import org.kuali.rice.krms.api.repository.context.ContextDefinition; import org.springframework.cache.annotation.CacheEvict;
|
import javax.jws.*; import org.kuali.rice.core.api.exception.*; import org.kuali.rice.krms.api.repository.agenda.*; import org.kuali.rice.krms.api.repository.context.*; import org.springframework.cache.annotation.*;
|
[
"javax.jws",
"org.kuali.rice",
"org.springframework.cache"
] |
javax.jws; org.kuali.rice; org.springframework.cache;
| 1,494,417
|
public LicenseBean getLicense()
{
try
{
if(license != null) return license;
license = gpUtil.getGPServerService().license();
}
catch (GreenPepperServerException e)
{
license = new LicenseBean();
}
return license;
}
|
LicenseBean function() { try { if(license != null) return license; license = gpUtil.getGPServerService().license(); } catch (GreenPepperServerException e) { license = new LicenseBean(); } return license; }
|
/**
* <p>Getter for the field <code>license</code>.</p>
*
* @return a {@link com.greenpepper.server.license.LicenseBean} object.
*/
|
Getter for the field <code>license</code>
|
getLicense
|
{
"repo_name": "strator-dev/greenpepper-open",
"path": "confluence/greenpepper-confluence-code/src/main/java/com/greenpepper/confluence/actions/server/ConfigurationAction.java",
"license": "apache-2.0",
"size": 15996
}
|
[
"com.greenpepper.server.GreenPepperServerException",
"com.greenpepper.server.license.LicenseBean"
] |
import com.greenpepper.server.GreenPepperServerException; import com.greenpepper.server.license.LicenseBean;
|
import com.greenpepper.server.*; import com.greenpepper.server.license.*;
|
[
"com.greenpepper.server"
] |
com.greenpepper.server;
| 1,454,280
|
private void initCard() {
ArrayList<Card> cards = new ArrayList<Card>();
for (int i = 0; i < 200; i++) {
GplayGridCard card = new GplayGridCard(getActivity());
card.headerTitle = "App example " + i;
card.secondaryTitle = "Some text here " + i;
card.rating = (float) (Math.random() * (5.0));
//Only for test, change some icons
if ((i % 6 == 0)) {
card.resourceIdThumbnail = R.drawable.ic_ic_dh_bat;
} else if ((i % 6 == 1)) {
card.resourceIdThumbnail = R.drawable.ic_ic_dh_net;
} else if ((i % 6 == 2)) {
card.resourceIdThumbnail = R.drawable.ic_tris;
} else if ((i % 6 == 3)) {
card.resourceIdThumbnail = R.drawable.ic_info;
} else if ((i % 6 == 4)) {
card.resourceIdThumbnail = R.drawable.ic_smile;
}
card.init();
cards.add(card);
}
mCardArrayAdapter = new CardGridArrayAdapter(getActivity(), cards);
mListView = (CardGridView) getActivity().findViewById(R.id.carddemo_extras_grid_base1);
if (mListView != null) {
setAlphaAdapter();
}
}
|
void function() { ArrayList<Card> cards = new ArrayList<Card>(); for (int i = 0; i < 200; i++) { GplayGridCard card = new GplayGridCard(getActivity()); card.headerTitle = STR + i; card.secondaryTitle = STR + i; card.rating = (float) (Math.random() * (5.0)); if ((i % 6 == 0)) { card.resourceIdThumbnail = R.drawable.ic_ic_dh_bat; } else if ((i % 6 == 1)) { card.resourceIdThumbnail = R.drawable.ic_ic_dh_net; } else if ((i % 6 == 2)) { card.resourceIdThumbnail = R.drawable.ic_tris; } else if ((i % 6 == 3)) { card.resourceIdThumbnail = R.drawable.ic_info; } else if ((i % 6 == 4)) { card.resourceIdThumbnail = R.drawable.ic_smile; } card.init(); cards.add(card); } mCardArrayAdapter = new CardGridArrayAdapter(getActivity(), cards); mListView = (CardGridView) getActivity().findViewById(R.id.carddemo_extras_grid_base1); if (mListView != null) { setAlphaAdapter(); } }
|
/**
* This method builds a simple card
*/
|
This method builds a simple card
|
initCard
|
{
"repo_name": "tajchert/CEEHack",
"path": "cardslib/demo/extras/src/main/java/it/gmariotti/cardslib/demo/extras/fragment/ListViewGridAnimationsFragment.java",
"license": "apache-2.0",
"size": 10724
}
|
[
"it.gmariotti.cardslib.library.internal.Card",
"it.gmariotti.cardslib.library.internal.CardGridArrayAdapter",
"it.gmariotti.cardslib.library.view.CardGridView",
"java.util.ArrayList"
] |
import it.gmariotti.cardslib.library.internal.Card; import it.gmariotti.cardslib.library.internal.CardGridArrayAdapter; import it.gmariotti.cardslib.library.view.CardGridView; import java.util.ArrayList;
|
import it.gmariotti.cardslib.library.internal.*; import it.gmariotti.cardslib.library.view.*; import java.util.*;
|
[
"it.gmariotti.cardslib",
"java.util"
] |
it.gmariotti.cardslib; java.util;
| 583,453
|
@Transactional (readOnly=false, propagation=Propagation.REQUIRED)
public void createTmpUser (User user) throws RequiredFieldMissingException,
RootNotModifiableException, EmailNotSentException
{
checkRequiredFields (user);
checkRoot (user);
userDao.createTmpUser (user);
}
|
@Transactional (readOnly=false, propagation=Propagation.REQUIRED) void function (User user) throws RequiredFieldMissingException, RootNotModifiableException, EmailNotSentException { checkRequiredFields (user); checkRoot (user); userDao.createTmpUser (user); }
|
/**
* Create given User as temporary User, after checking required fields.
*
* @param user
* @throws RequiredFieldMissingException
* @throws RootNotModifiableException
*/
|
Create given User as temporary User, after checking required fields
|
createTmpUser
|
{
"repo_name": "calogera/DataHubSystem",
"path": "core/src/main/java/fr/gael/dhus/service/UserService.java",
"license": "agpl-3.0",
"size": 30509
}
|
[
"fr.gael.dhus.database.object.User",
"fr.gael.dhus.service.exception.EmailNotSentException",
"fr.gael.dhus.service.exception.RequiredFieldMissingException",
"fr.gael.dhus.service.exception.RootNotModifiableException",
"org.springframework.transaction.annotation.Propagation",
"org.springframework.transaction.annotation.Transactional"
] |
import fr.gael.dhus.database.object.User; import fr.gael.dhus.service.exception.EmailNotSentException; import fr.gael.dhus.service.exception.RequiredFieldMissingException; import fr.gael.dhus.service.exception.RootNotModifiableException; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional;
|
import fr.gael.dhus.database.object.*; import fr.gael.dhus.service.exception.*; import org.springframework.transaction.annotation.*;
|
[
"fr.gael.dhus",
"org.springframework.transaction"
] |
fr.gael.dhus; org.springframework.transaction;
| 1,825,062
|
public static ims.clinical.configuration.domain.objects.InternalReferralSettings extractInternalReferralSettings(ims.domain.ILightweightDomainFactory domainFactory, ims.clinicaladmin.vo.InternalReferralSettingsForBookingWorklistVo valueObject)
{
return extractInternalReferralSettings(domainFactory, valueObject, new HashMap());
}
|
static ims.clinical.configuration.domain.objects.InternalReferralSettings function(ims.domain.ILightweightDomainFactory domainFactory, ims.clinicaladmin.vo.InternalReferralSettingsForBookingWorklistVo valueObject) { return extractInternalReferralSettings(domainFactory, valueObject, new HashMap()); }
|
/**
* Create the domain object from the value object.
* @param domainFactory - used to create existing (persistent) domain objects.
* @param valueObject - extract the domain object fields from this.
*/
|
Create the domain object from the value object
|
extractInternalReferralSettings
|
{
"repo_name": "FreudianNM/openMAXIMS",
"path": "Source Library/openmaxims_workspace/ValueObjects/src/ims/clinicaladmin/vo/domain/InternalReferralSettingsForBookingWorklistVoAssembler.java",
"license": "agpl-3.0",
"size": 18827
}
|
[
"java.util.HashMap"
] |
import java.util.HashMap;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 289,460
|
CancelamentoMatriculaDTO save(CancelamentoMatriculaDTO cancelamentoMatriculaDTO);
|
CancelamentoMatriculaDTO save(CancelamentoMatriculaDTO cancelamentoMatriculaDTO);
|
/**
* Save a cancelamentoMatricula.
*
* @param cancelamentoMatriculaDTO the entity to save
* @return the persisted entity
*/
|
Save a cancelamentoMatricula
|
save
|
{
"repo_name": "DamascenoRafael/cos482-qualidade-de-software",
"path": "www/src/main/java/br/ufrj/g2matricula/service/CancelamentoMatriculaService.java",
"license": "mit",
"size": 1195
}
|
[
"br.ufrj.g2matricula.service.dto.CancelamentoMatriculaDTO"
] |
import br.ufrj.g2matricula.service.dto.CancelamentoMatriculaDTO;
|
import br.ufrj.g2matricula.service.dto.*;
|
[
"br.ufrj.g2matricula"
] |
br.ufrj.g2matricula;
| 2,790,259
|
@Override
public List<IAcceleoTextGenerationListener> getGenerationListeners() {
List<IAcceleoTextGenerationListener> listeners = super.getGenerationListeners();
return listeners;
}
|
List<IAcceleoTextGenerationListener> function() { List<IAcceleoTextGenerationListener> listeners = super.getGenerationListeners(); return listeners; }
|
/**
* If this generator needs to listen to text generation events, listeners can be returned from here.
*
* @return List of listeners that are to be notified when text is generated through this launch.
* @generated
*/
|
If this generator needs to listen to text generation events, listeners can be returned from here
|
getGenerationListeners
|
{
"repo_name": "Obeo/Game-Designer",
"path": "plugins/fr.obeo.generator.game/src/fr/obeo/generator/game/module/Main.java",
"license": "epl-1.0",
"size": 18158
}
|
[
"java.util.List",
"org.eclipse.acceleo.engine.event.IAcceleoTextGenerationListener"
] |
import java.util.List; import org.eclipse.acceleo.engine.event.IAcceleoTextGenerationListener;
|
import java.util.*; import org.eclipse.acceleo.engine.event.*;
|
[
"java.util",
"org.eclipse.acceleo"
] |
java.util; org.eclipse.acceleo;
| 338,312
|
public CookieConfigType<T> secure(Boolean secure)
{
childNode.getOrCreate("secure").text(secure);
return this;
}
|
CookieConfigType<T> function(Boolean secure) { childNode.getOrCreate(STR).text(secure); return this; }
|
/**
* Sets the <code>secure</code> element
* @param secure the value for the element <code>secure</code>
* @return the current instance of <code>CookieConfigType<T></code>
*/
|
Sets the <code>secure</code> element
|
secure
|
{
"repo_name": "forge/javaee-descriptors",
"path": "impl/src/main/java/org/jboss/shrinkwrap/descriptor/impl/webcommon31/CookieConfigTypeImpl.java",
"license": "epl-1.0",
"size": 11267
}
|
[
"org.jboss.shrinkwrap.descriptor.api.webcommon31.CookieConfigType"
] |
import org.jboss.shrinkwrap.descriptor.api.webcommon31.CookieConfigType;
|
import org.jboss.shrinkwrap.descriptor.api.webcommon31.*;
|
[
"org.jboss.shrinkwrap"
] |
org.jboss.shrinkwrap;
| 449,023
|
public void setArguments(String s) {
bundleProperties.setArguments(s);
}
|
void function(String s) { bundleProperties.setArguments(s); }
|
/**
* Arguments to the
*
* @param s
* The arguments to pass to the application being launched.
*/
|
Arguments to the
|
setArguments
|
{
"repo_name": "humandoing/JarIndexer",
"path": "resources/jarbundler-1.9/src/net/sourceforge/jarbundler/JarBundler.java",
"license": "bsd-3-clause",
"size": 44012
}
|
[
"java.lang.String"
] |
import java.lang.String;
|
import java.lang.*;
|
[
"java.lang"
] |
java.lang;
| 79,952
|
EClass getStringProperty();
|
EClass getStringProperty();
|
/**
* Returns the meta object for class '{@link ch.hilbri.assist.model.StringProperty <em>String Property</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for class '<em>String Property</em>'.
* @see ch.hilbri.assist.model.StringProperty
* @generated
*/
|
Returns the meta object for class '<code>ch.hilbri.assist.model.StringProperty String Property</code>'.
|
getStringProperty
|
{
"repo_name": "RobertHilbrich/assist",
"path": "ch.hilbri.assist.model/src-gen/ch/hilbri/assist/model/ModelPackage.java",
"license": "gpl-2.0",
"size": 419306
}
|
[
"org.eclipse.emf.ecore.EClass"
] |
import org.eclipse.emf.ecore.EClass;
|
import org.eclipse.emf.ecore.*;
|
[
"org.eclipse.emf"
] |
org.eclipse.emf;
| 304,030
|
@POST
@Path("/{id}/configs")
@Consumes(MediaType.APPLICATION_JSON)
@ApiOperation(
value = "Add new configuration files to a cluster",
notes = "Add the supplied configuration files to the cluster with the supplied id.",
response = String.class,
responseContainer = "List"
)
@ApiResponses(value = {
@ApiResponse(
code = HttpURLConnection.HTTP_NOT_FOUND,
message = "Cluster not found"
),
@ApiResponse(
code = HttpURLConnection.HTTP_PRECON_FAILED,
message = "Invalid required parameter supplied"
),
@ApiResponse(
code = HttpURLConnection.HTTP_INTERNAL_ERROR,
message = "Genie Server Error due to Unknown Exception"
)
})
public Set<String> addConfigsForCluster(
@ApiParam(
value = "Id of the cluster to add configuration to.",
required = true
)
@PathParam("id")
final String id,
@ApiParam(
value = "The configuration files to add.",
required = true
)
final Set<String> configs
) throws GenieException {
LOG.info("Called with id " + id + " and config " + configs);
return this.clusterConfigService.addConfigsForCluster(id, configs);
}
|
@Path(STR) @Consumes(MediaType.APPLICATION_JSON) @ApiOperation( value = STR, notes = STR, response = String.class, responseContainer = "List" ) @ApiResponses(value = { @ApiResponse( code = HttpURLConnection.HTTP_NOT_FOUND, message = STR ), @ApiResponse( code = HttpURLConnection.HTTP_PRECON_FAILED, message = STR ), @ApiResponse( code = HttpURLConnection.HTTP_INTERNAL_ERROR, message = STR ) }) Set<String> function( @ApiParam( value = STR, required = true ) @PathParam("id") final String id, @ApiParam( value = STR, required = true ) final Set<String> configs ) throws GenieException { LOG.info(STR + id + STR + configs); return this.clusterConfigService.addConfigsForCluster(id, configs); }
|
/**
* Add new configuration files to a given cluster.
*
* @param id The id of the cluster to add the configuration file to. Not
* null/empty/blank.
* @param configs The configuration files to add. Not null/empty/blank.
* @return The active configurations for this cluster.
* @throws GenieException For any error
*/
|
Add new configuration files to a given cluster
|
addConfigsForCluster
|
{
"repo_name": "gorcz/genie",
"path": "genie-server/src/main/java/com/netflix/genie/server/resources/ClusterConfigResource.java",
"license": "apache-2.0",
"size": 36828
}
|
[
"com.netflix.genie.common.exceptions.GenieException",
"com.wordnik.swagger.annotations.ApiOperation",
"com.wordnik.swagger.annotations.ApiParam",
"com.wordnik.swagger.annotations.ApiResponse",
"com.wordnik.swagger.annotations.ApiResponses",
"java.net.HttpURLConnection",
"java.util.List",
"java.util.Set",
"javax.ws.rs.Consumes",
"javax.ws.rs.Path",
"javax.ws.rs.PathParam",
"javax.ws.rs.core.MediaType"
] |
import com.netflix.genie.common.exceptions.GenieException; import com.wordnik.swagger.annotations.ApiOperation; import com.wordnik.swagger.annotations.ApiParam; import com.wordnik.swagger.annotations.ApiResponse; import com.wordnik.swagger.annotations.ApiResponses; import java.net.HttpURLConnection; import java.util.List; import java.util.Set; import javax.ws.rs.Consumes; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.core.MediaType;
|
import com.netflix.genie.common.exceptions.*; import com.wordnik.swagger.annotations.*; import java.net.*; import java.util.*; import javax.ws.rs.*; import javax.ws.rs.core.*;
|
[
"com.netflix.genie",
"com.wordnik.swagger",
"java.net",
"java.util",
"javax.ws"
] |
com.netflix.genie; com.wordnik.swagger; java.net; java.util; javax.ws;
| 986,351
|
private ContentPanel getMonitoredPointsPanel() {
// Store filters.
final StoreFilter<MonitoredPointDTO> notCompletedFilter = new StoreFilter<MonitoredPointDTO>() {
|
ContentPanel function() { final StoreFilter<MonitoredPointDTO> notCompletedFilter = new StoreFilter<MonitoredPointDTO>() {
|
/**
* Gets the panel which displays the monitored points.
*
* @return The panel which displays the monitored points.
*/
|
Gets the panel which displays the monitored points
|
getMonitoredPointsPanel
|
{
"repo_name": "spMohanty/sigmah_svn_to_git_migration_test",
"path": "sigmah/src/main/java/org/sigmah/client/page/project/dashboard/ProjectDashboardView.java",
"license": "gpl-3.0",
"size": 50126
}
|
[
"com.extjs.gxt.ui.client.store.StoreFilter",
"com.extjs.gxt.ui.client.widget.ContentPanel",
"org.sigmah.shared.dto.reminder.MonitoredPointDTO"
] |
import com.extjs.gxt.ui.client.store.StoreFilter; import com.extjs.gxt.ui.client.widget.ContentPanel; import org.sigmah.shared.dto.reminder.MonitoredPointDTO;
|
import com.extjs.gxt.ui.client.store.*; import com.extjs.gxt.ui.client.widget.*; import org.sigmah.shared.dto.reminder.*;
|
[
"com.extjs.gxt",
"org.sigmah.shared"
] |
com.extjs.gxt; org.sigmah.shared;
| 997,118
|
public void setRotateAngle(ModelRenderer modelRenderer, float x, float y, float z)
{
modelRenderer.rotateAngleX = x;
modelRenderer.rotateAngleY = y;
modelRenderer.rotateAngleZ = z;
}
|
void function(ModelRenderer modelRenderer, float x, float y, float z) { modelRenderer.rotateAngleX = x; modelRenderer.rotateAngleY = y; modelRenderer.rotateAngleZ = z; }
|
/**
* This is a helper function from Tabula to set the rotation of model parts
*/
|
This is a helper function from Tabula to set the rotation of model parts
|
setRotateAngle
|
{
"repo_name": "Wehavecookies56/Kingdom-Keys-Re-Coded",
"path": "src/main/java/uk/co/wehavecookies56/kk/client/model/mobs/ModelCreeper.java",
"license": "lgpl-3.0",
"size": 20551
}
|
[
"net.minecraft.client.model.ModelRenderer"
] |
import net.minecraft.client.model.ModelRenderer;
|
import net.minecraft.client.model.*;
|
[
"net.minecraft.client"
] |
net.minecraft.client;
| 2,655,716
|
EReference getWork_Customers();
|
EReference getWork_Customers();
|
/**
* Returns the meta object for the reference list '{@link CIM.IEC61968.Work.Work#getCustomers <em>Customers</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the meta object for the reference list '<em>Customers</em>'.
* @see CIM.IEC61968.Work.Work#getCustomers()
* @see #getWork()
* @generated
*/
|
Returns the meta object for the reference list '<code>CIM.IEC61968.Work.Work#getCustomers Customers</code>'.
|
getWork_Customers
|
{
"repo_name": "georghinkel/ttc2017smartGrids",
"path": "solutions/ModelJoin/src/main/java/CIM/IEC61968/Work/WorkPackage.java",
"license": "mit",
"size": 22621
}
|
[
"org.eclipse.emf.ecore.EReference"
] |
import org.eclipse.emf.ecore.EReference;
|
import org.eclipse.emf.ecore.*;
|
[
"org.eclipse.emf"
] |
org.eclipse.emf;
| 71,593
|
public static String validateLocale(String localeId, String name, boolean nullable) throws JSONException {
localeId = StringUtils.strip(localeId);
if (StringUtils.isEmpty(localeId)) {
if (!nullable) {
throw new ClientException("ValidationError", MessageFormat.format("{0} is required", name));
} else {
return null;
}
}
LocaleDao localeDao = new LocaleDao();
Locale locale = localeDao.getById(localeId);
if (locale == null) {
throw new ClientException("ValidationError", "Locale not found: " + localeId);
}
return localeId;
}
|
static String function(String localeId, String name, boolean nullable) throws JSONException { localeId = StringUtils.strip(localeId); if (StringUtils.isEmpty(localeId)) { if (!nullable) { throw new ClientException(STR, MessageFormat.format(STR, name)); } else { return null; } } LocaleDao localeDao = new LocaleDao(); Locale locale = localeDao.getById(localeId); if (locale == null) { throw new ClientException(STR, STR + localeId); } return localeId; }
|
/**
* Validates a locale.
*
* @param localeId String to validate
* @param name Name of the parameter
* @return String without white spaces
* @param nullable True if the string can be empty or null
*/
|
Validates a locale
|
validateLocale
|
{
"repo_name": "sismics/reader",
"path": "reader-web/src/main/java/com/sismics/reader/rest/util/ValidationUtil.java",
"license": "gpl-2.0",
"size": 2461
}
|
[
"com.sismics.reader.core.dao.jpa.LocaleDao",
"com.sismics.reader.core.model.jpa.Locale",
"com.sismics.rest.exception.ClientException",
"java.text.MessageFormat",
"org.apache.commons.lang.StringUtils",
"org.codehaus.jettison.json.JSONException"
] |
import com.sismics.reader.core.dao.jpa.LocaleDao; import com.sismics.reader.core.model.jpa.Locale; import com.sismics.rest.exception.ClientException; import java.text.MessageFormat; import org.apache.commons.lang.StringUtils; import org.codehaus.jettison.json.JSONException;
|
import com.sismics.reader.core.dao.jpa.*; import com.sismics.reader.core.model.jpa.*; import com.sismics.rest.exception.*; import java.text.*; import org.apache.commons.lang.*; import org.codehaus.jettison.json.*;
|
[
"com.sismics.reader",
"com.sismics.rest",
"java.text",
"org.apache.commons",
"org.codehaus.jettison"
] |
com.sismics.reader; com.sismics.rest; java.text; org.apache.commons; org.codehaus.jettison;
| 2,404,321
|
if(collection == null){
out.write("null");
return;
}
boolean first = true;
Iterator iter=collection.iterator();
out.write('[');
while(iter.hasNext()){
if(first)
first = false;
else
out.write(',');
Object value=iter.next();
if(value == null){
out.write("null");
continue;
}
JSONValue.writeJSONString(value, out);
}
out.write(']');
}
|
if(collection == null){ out.write("null"); return; } boolean first = true; Iterator iter=collection.iterator(); out.write('['); while(iter.hasNext()){ if(first) first = false; else out.write(','); Object value=iter.next(); if(value == null){ out.write("null"); continue; } JSONValue.writeJSONString(value, out); } out.write(']'); }
|
/**
* Encode a list into JSON text and write it to out.
* If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level.
*
* @see org.json.simple.JSONValue#writeJSONString(Object, Writer)
*
* @param collection
* @param out
*/
|
Encode a list into JSON text and write it to out. If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level
|
writeJSONString
|
{
"repo_name": "jeo/jeo",
"path": "core/src/main/java/io/jeo/json/JSONArray.java",
"license": "apache-2.0",
"size": 9624
}
|
[
"java.util.Iterator"
] |
import java.util.Iterator;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 2,530,560
|
public String getParityString() {
switch (m_Parity) {
case SerialPort.PARITY_NONE:
return "none";
case SerialPort.PARITY_EVEN:
return "even";
case SerialPort.PARITY_ODD:
return "odd";
default:
return "none";
}
}// getParityString
|
String function() { switch (m_Parity) { case SerialPort.PARITY_NONE: return "none"; case SerialPort.PARITY_EVEN: return "even"; case SerialPort.PARITY_ODD: return "odd"; default: return "none"; } }
|
/**
* Returns the parity schema as <tt>String</tt>.
*
* @return the parity schema as <tt>String</tt>.
*/
|
Returns the parity schema as String
|
getParityString
|
{
"repo_name": "paolodenti/openhab",
"path": "bundles/binding/org.openhab.binding.modbus/src/main/java/net/wimpi/modbus/util/SerialParameters.java",
"license": "epl-1.0",
"size": 20403
}
|
[
"gnu.io.SerialPort"
] |
import gnu.io.SerialPort;
|
import gnu.io.*;
|
[
"gnu.io"
] |
gnu.io;
| 2,179,681
|
@Generated
@CVariable()
@MappedReturn(ObjCStringMapper.class)
public static native String NSProgressFileOperationKindDownloading();
|
@CVariable() @MappedReturn(ObjCStringMapper.class) static native String function();
|
/**
* Possible values for NSProgressFileOperationKindKey entries.
*/
|
Possible values for NSProgressFileOperationKindKey entries
|
NSProgressFileOperationKindDownloading
|
{
"repo_name": "multi-os-engine/moe-core",
"path": "moe.apple/moe.platform.ios/src/main/java/apple/foundation/c/Foundation.java",
"license": "apache-2.0",
"size": 156135
}
|
[
"org.moe.natj.c.ann.CVariable",
"org.moe.natj.general.ann.MappedReturn",
"org.moe.natj.objc.map.ObjCStringMapper"
] |
import org.moe.natj.c.ann.CVariable; import org.moe.natj.general.ann.MappedReturn; import org.moe.natj.objc.map.ObjCStringMapper;
|
import org.moe.natj.c.ann.*; import org.moe.natj.general.ann.*; import org.moe.natj.objc.map.*;
|
[
"org.moe.natj"
] |
org.moe.natj;
| 2,657,928
|
public String getSerial();
/**
* Opens and initializes the port. Upon success, caller must ensure that
* {@link #close()} is eventually called.
*
* @param connection an open device connection, acquired with
* {@link UsbManager#openDevice(android.hardware.usb.UsbDevice)}
|
String function(); /** * Opens and initializes the port. Upon success, caller must ensure that * {@link #close()} is eventually called. * * @param connection an open device connection, acquired with * {@link UsbManager#openDevice(android.hardware.usb.UsbDevice)}
|
/**
* The serial number of the underlying UsbDeviceConnection, or {@code null}.
*/
|
The serial number of the underlying UsbDeviceConnection, or null
|
getSerial
|
{
"repo_name": "MichaelMGonzalez/MagneticFieldLocalization",
"path": "MagneticFieldLocalizer/app/src/main/java/usbserial/driver/UsbSerialPort.java",
"license": "gpl-3.0",
"size": 7536
}
|
[
"android.hardware.usb.UsbManager"
] |
import android.hardware.usb.UsbManager;
|
import android.hardware.usb.*;
|
[
"android.hardware"
] |
android.hardware;
| 2,242,741
|
@Override
public boolean areEqual(Object actual, Object other) {
return Objects.areEqual(actual, other);
}
/**
* Returns true if given {@link Iterable} contains given value based on {@link Objects#areEqual(Object, Object)},
* false otherwise.<br>
* If given {@link Iterable} is null, return false.
*
* @param iterable the {@link Iterable} to search value in
* @param value the object to look for in given {@link Iterable}
|
boolean function(Object actual, Object other) { return Objects.areEqual(actual, other); } /** * Returns true if given {@link Iterable} contains given value based on {@link Objects#areEqual(Object, Object)}, * false otherwise.<br> * If given {@link Iterable} is null, return false. * * @param iterable the {@link Iterable} to search value in * @param value the object to look for in given {@link Iterable}
|
/**
* Returns true if actual and other are equal based on {@link Objects#areEqual(Object, Object)}, false otherwise.
*
* @param actual the object to compare to other
* @param other the object to compare to actual
* @return true if actual and other are equal based on {@link Objects#areEqual(Object, Object)}, false otherwise.
*/
|
Returns true if actual and other are equal based on <code>Objects#areEqual(Object, Object)</code>, false otherwise
|
areEqual
|
{
"repo_name": "dorzey/assertj-core",
"path": "src/main/java/org/assertj/core/internal/StandardComparisonStrategy.java",
"license": "apache-2.0",
"size": 6473
}
|
[
"org.assertj.core.util.Objects"
] |
import org.assertj.core.util.Objects;
|
import org.assertj.core.util.*;
|
[
"org.assertj.core"
] |
org.assertj.core;
| 1,971,307
|
private static MethodHandle createSAMTransform(Object arg, Class parameter) {
Method method = CachedSAMClass.getSAMMethod(parameter);
if (method == null) return null;
// TODO: have to think about how to optimize this!
if (parameter.isInterface()) {
if (Traits.isTrait(parameter)) {
// the following code will basically do this:
// Map<String,Closure> impl = Collections.singletonMap(method.getName(),arg);
// return ProxyGenerator.INSTANCE.instantiateAggregate(impl,Collections.singletonList(clazz));
// TO_SAMTRAIT_PROXY is a handle (Object,Object,ProxyGenerator,Class)GroovyObject
// where the second object is the input closure, everything else
// needs to be provide and is in remaining order: method name,
// ProxyGenerator.INSTANCE and singletonList(parameter)
MethodHandle ret = TO_SAMTRAIT_PROXY;
ret = MethodHandles.insertArguments(ret, 2, ProxyGenerator.INSTANCE, Collections.singletonList(parameter));
ret = MethodHandles.insertArguments(ret, 0, method.getName());
return ret;
}
// the following code will basically do this:
// return Proxy.newProxyInstance(
// arg.getClass().getClassLoader(),
// new Class[]{parameter},
// new ConvertedClosure((Closure) arg));
// TO_REFLECTIVE_PROXY will do that for us, though
// input is the closure, the method name, the class loader and the
// class[]. All of that but the closure must be provided here
MethodHandle ret = TO_REFLECTIVE_PROXY;
ret = MethodHandles.insertArguments(ret, 1,
method.getName(),
arg.getClass().getClassLoader(),
new Class[]{parameter});
return ret;
} else {
// the following code will basically do this:
//Map<String, Object> m = Collections.singletonMap(method.getName(), arg);
//return ProxyGenerator.INSTANCE.
// instantiateAggregateFromBaseClass(m, parameter);
// TO_GENERATED_PROXY is a handle (Object,Object,ProxyGenerator,Class)GroovyObject
// where the second object is the input closure, everything else
// needs to be provide and is in remaining order: method name,
// ProxyGenerator.INSTANCE and parameter
MethodHandle ret = TO_GENERATED_PROXY;
ret = MethodHandles.insertArguments(ret, 2, ProxyGenerator.INSTANCE, parameter);
ret = MethodHandles.insertArguments(ret, 0, method.getName());
return ret;
}
}
/**
* Apply a transformer as filter.
* The filter may not match exactly in the types. In this case needed
* additional type transformations are done by {@link MethodHandle#asType(MethodType)}
|
static MethodHandle function(Object arg, Class parameter) { Method method = CachedSAMClass.getSAMMethod(parameter); if (method == null) return null; if (parameter.isInterface()) { if (Traits.isTrait(parameter)) { MethodHandle ret = TO_SAMTRAIT_PROXY; ret = MethodHandles.insertArguments(ret, 2, ProxyGenerator.INSTANCE, Collections.singletonList(parameter)); ret = MethodHandles.insertArguments(ret, 0, method.getName()); return ret; } MethodHandle ret = TO_REFLECTIVE_PROXY; ret = MethodHandles.insertArguments(ret, 1, method.getName(), arg.getClass().getClassLoader(), new Class[]{parameter}); return ret; } else { MethodHandle ret = TO_GENERATED_PROXY; ret = MethodHandles.insertArguments(ret, 2, ProxyGenerator.INSTANCE, parameter); ret = MethodHandles.insertArguments(ret, 0, method.getName()); return ret; } } /** * Apply a transformer as filter. * The filter may not match exactly in the types. In this case needed * additional type transformations are done by {@link MethodHandle#asType(MethodType)}
|
/**
* creates a method handle able to transform the given Closure into a SAM type
* if the given parameter is a SAM type
*/
|
creates a method handle able to transform the given Closure into a SAM type if the given parameter is a SAM type
|
createSAMTransform
|
{
"repo_name": "antoaravinth/incubator-groovy",
"path": "src/main/org/codehaus/groovy/vmplugin/v7/TypeTransformers.java",
"license": "apache-2.0",
"size": 12297
}
|
[
"groovy.util.ProxyGenerator",
"java.lang.invoke.MethodHandle",
"java.lang.invoke.MethodHandles",
"java.lang.invoke.MethodType",
"java.lang.reflect.Method",
"java.util.Collections",
"org.codehaus.groovy.reflection.stdclasses.CachedSAMClass",
"org.codehaus.groovy.transform.trait.Traits"
] |
import groovy.util.ProxyGenerator; import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodHandles; import java.lang.invoke.MethodType; import java.lang.reflect.Method; import java.util.Collections; import org.codehaus.groovy.reflection.stdclasses.CachedSAMClass; import org.codehaus.groovy.transform.trait.Traits;
|
import groovy.util.*; import java.lang.invoke.*; import java.lang.reflect.*; import java.util.*; import org.codehaus.groovy.reflection.stdclasses.*; import org.codehaus.groovy.transform.trait.*;
|
[
"groovy.util",
"java.lang",
"java.util",
"org.codehaus.groovy"
] |
groovy.util; java.lang; java.util; org.codehaus.groovy;
| 1,700,670
|
public static GroupKeyManagementFragment newInstance(long preselectId) {
GroupKeyManagementFragment fragment = new GroupKeyManagementFragment();
Bundle args = new Bundle(1);
args.putLong(ARGNAME_PRESELECT, preselectId);
fragment.setArguments(args);
return fragment;
}
private KeyManagementFragmentHelper helper;
|
static GroupKeyManagementFragment function(long preselectId) { GroupKeyManagementFragment fragment = new GroupKeyManagementFragment(); Bundle args = new Bundle(1); args.putLong(ARGNAME_PRESELECT, preselectId); fragment.setArguments(args); return fragment; } private KeyManagementFragmentHelper helper;
|
/**
* Creates a new GroupKeyManagementFragment which automatically scrolls to the specified key ID
* when it is shown.
*
* @param preselectId The ID to preselect when the fragment is shown.
* @return A new GroupKeyManagementFragment.
*/
|
Creates a new GroupKeyManagementFragment which automatically scrolls to the specified key ID when it is shown
|
newInstance
|
{
"repo_name": "timberdoodle/TimberdoodleApp",
"path": "project/app/src/main/java/de/tu_darmstadt/adtn/ui/groupmanager/GroupKeyManagementFragment.java",
"license": "gpl-2.0",
"size": 6606
}
|
[
"android.os.Bundle"
] |
import android.os.Bundle;
|
import android.os.*;
|
[
"android.os"
] |
android.os;
| 2,540,787
|
public void sendRequest(String path, RequestOptions options) throws IOException, JSONException {
String rootUrl;
if (path == null) {
throw new IllegalArgumentException("'path' parameter can't be null.");
}
if (path.indexOf(BMSClient.HTTP_SCHEME) == 0 && path.contains(":")) {
// request using full path, split the URL to root and path
URL url = new URL(path);
path = url.getPath();
rootUrl = url.toString().replace(path, "");
} else {
String MCATenantId = MCAAuthorizationManager.getInstance().getTenantId();
if(MCATenantId == null){
MCATenantId = BMSClient.getInstance().getBluemixAppGUID();
}
String bluemixRegionSuffix = MCAAuthorizationManager.getInstance().getBluemixRegionSuffix();
if(bluemixRegionSuffix == null){
bluemixRegionSuffix = BMSClient.getInstance().getBluemixRegionSuffix();
}
// "path" is a relative
String serverHost = BMSClient.getInstance().getDefaultProtocol()
+ "://"
+ AUTH_SERVER_NAME
+ bluemixRegionSuffix;
if (overrideServerHost!=null)
serverHost = overrideServerHost;
rootUrl = serverHost
+ "/"
+ AUTH_SERVER_NAME
+ "/"
+ AUTH_PATH
+ MCATenantId;
}
sendRequestInternal(rootUrl, path, options);
}
|
void function(String path, RequestOptions options) throws IOException, JSONException { String rootUrl; if (path == null) { throw new IllegalArgumentException(STR); } if (path.indexOf(BMSClient.HTTP_SCHEME) == 0 && path.contains(":")) { URL url = new URL(path); path = url.getPath(); rootUrl = url.toString().replace(path, STR: + AUTH_SERVER_NAME + bluemixRegionSuffix; if (overrideServerHost!=null) serverHost = overrideServerHost; rootUrl = serverHost + "/" + AUTH_SERVER_NAME + "/" + AUTH_PATH + MCATenantId; } sendRequestInternal(rootUrl, path, options); }
|
/**
* Assembles the request path from root and path to authorization endpoint and sends the request.
*
* @param path Path to authorization endpoint
* @param options BaseRequest options
* @throws IOException
* @throws JSONException
*/
|
Assembles the request path from root and path to authorization endpoint and sends the request
|
sendRequest
|
{
"repo_name": "ibm-bluemix-mobile-services/bms-clientsdk-android-core",
"path": "lib/src/main/java/com/ibm/mobilefirstplatform/clientsdk/android/security/mca/internal/AuthorizationRequestManager.java",
"license": "apache-2.0",
"size": 20259
}
|
[
"com.ibm.mobilefirstplatform.clientsdk.android.core.api.BMSClient",
"java.io.IOException",
"org.json.JSONException"
] |
import com.ibm.mobilefirstplatform.clientsdk.android.core.api.BMSClient; import java.io.IOException; import org.json.JSONException;
|
import com.ibm.mobilefirstplatform.clientsdk.android.core.api.*; import java.io.*; import org.json.*;
|
[
"com.ibm.mobilefirstplatform",
"java.io",
"org.json"
] |
com.ibm.mobilefirstplatform; java.io; org.json;
| 2,653,637
|
public static void deleteRegionFromFileSystem(final Configuration conf,
final FileSystem fs, final Path tableDir, final HRegionInfo regionInfo) throws IOException {
HRegionFileSystem regionFs = new HRegionFileSystem(conf, fs, tableDir, regionInfo);
Path regionDir = regionFs.getRegionDir();
if (!fs.exists(regionDir)) {
LOG.warn("Trying to delete a region that do not exists on disk: " + regionDir);
return;
}
if (LOG.isDebugEnabled()) {
LOG.debug("DELETING region " + regionDir);
}
// Archive region
Path rootDir = FSUtils.getRootDir(conf);
HFileArchiver.archiveRegion(fs, rootDir, tableDir, regionDir);
// Delete empty region dir
if (!fs.delete(regionDir, true)) {
LOG.warn("Failed delete of " + regionDir);
}
}
|
static void function(final Configuration conf, final FileSystem fs, final Path tableDir, final HRegionInfo regionInfo) throws IOException { HRegionFileSystem regionFs = new HRegionFileSystem(conf, fs, tableDir, regionInfo); Path regionDir = regionFs.getRegionDir(); if (!fs.exists(regionDir)) { LOG.warn(STR + regionDir); return; } if (LOG.isDebugEnabled()) { LOG.debug(STR + regionDir); } Path rootDir = FSUtils.getRootDir(conf); HFileArchiver.archiveRegion(fs, rootDir, tableDir, regionDir); if (!fs.delete(regionDir, true)) { LOG.warn(STR + regionDir); } }
|
/**
* Remove the region from the table directory, archiving the region's hfiles.
* @param conf the {@link Configuration} to use
* @param fs {@link FileSystem} from which to remove the region
* @param tableDir {@link Path} to where the table is being stored
* @param regionInfo {@link HRegionInfo} for region to be deleted
* @throws IOException if the request cannot be completed
*/
|
Remove the region from the table directory, archiving the region's hfiles
|
deleteRegionFromFileSystem
|
{
"repo_name": "narendragoyal/hbase",
"path": "hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java",
"license": "apache-2.0",
"size": 42354
}
|
[
"java.io.IOException",
"org.apache.hadoop.conf.Configuration",
"org.apache.hadoop.fs.FileSystem",
"org.apache.hadoop.fs.Path",
"org.apache.hadoop.hbase.HRegionInfo",
"org.apache.hadoop.hbase.backup.HFileArchiver",
"org.apache.hadoop.hbase.util.FSUtils"
] |
import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.hbase.HRegionInfo; import org.apache.hadoop.hbase.backup.HFileArchiver; import org.apache.hadoop.hbase.util.FSUtils;
|
import java.io.*; import org.apache.hadoop.conf.*; import org.apache.hadoop.fs.*; import org.apache.hadoop.hbase.*; import org.apache.hadoop.hbase.backup.*; import org.apache.hadoop.hbase.util.*;
|
[
"java.io",
"org.apache.hadoop"
] |
java.io; org.apache.hadoop;
| 119,403
|
public Timestamp getValidFrom ()
{
return (Timestamp)get_Value(COLUMNNAME_ValidFrom);
}
|
Timestamp function () { return (Timestamp)get_Value(COLUMNNAME_ValidFrom); }
|
/** Get Valid from.
@return Valid from including this date (first day)
*/
|
Get Valid from
|
getValidFrom
|
{
"repo_name": "erpcya/adempierePOS",
"path": "base/src/org/compiere/model/X_A_Asset_Acct.java",
"license": "gpl-2.0",
"size": 33498
}
|
[
"java.sql.Timestamp"
] |
import java.sql.Timestamp;
|
import java.sql.*;
|
[
"java.sql"
] |
java.sql;
| 1,384,971
|
public void publish(final PlanetName planetName) {
final Planet planet = context.getPlanet(planetName);
new ItemIterator().iterate(new ItemIteratorCallback() {
|
void function(final PlanetName planetName) { final Planet planet = context.getPlanet(planetName); new ItemIterator().iterate(new ItemIteratorCallback() {
|
/**
* Iterates through all items and publishes the states.
*/
|
Iterates through all items and publishes the states
|
publish
|
{
"repo_name": "MCherifiOSS/openhab",
"path": "bundles/binding/org.openhab.binding.astro/src/main/java/org/openhab/binding/astro/internal/bus/PlanetPublisher.java",
"license": "epl-1.0",
"size": 6514
}
|
[
"org.openhab.binding.astro.internal.model.Planet",
"org.openhab.binding.astro.internal.model.PlanetName",
"org.openhab.binding.astro.internal.util.ItemIterator"
] |
import org.openhab.binding.astro.internal.model.Planet; import org.openhab.binding.astro.internal.model.PlanetName; import org.openhab.binding.astro.internal.util.ItemIterator;
|
import org.openhab.binding.astro.internal.model.*; import org.openhab.binding.astro.internal.util.*;
|
[
"org.openhab.binding"
] |
org.openhab.binding;
| 1,380,620
|
public Map<String, Resource> getLanguageResources() {
return Collections.unmodifiableMap(resources);
}
|
Map<String, Resource> function() { return Collections.unmodifiableMap(resources); }
|
/**
* Returns a map of all languages currently associated with this service,
* where the key of each map entry is the language key. The returned map
* cannot be modified.
*
* @return
* A map of all languages currently associated with this service.
*/
|
Returns a map of all languages currently associated with this service, where the key of each map entry is the language key. The returned map cannot be modified
|
getLanguageResources
|
{
"repo_name": "TribeMedia/guacamole-client",
"path": "guacamole/src/main/java/org/glyptodon/guacamole/net/basic/extension/LanguageResourceService.java",
"license": "mit",
"size": 13508
}
|
[
"java.util.Collections",
"java.util.Map",
"org.glyptodon.guacamole.net.basic.resource.Resource"
] |
import java.util.Collections; import java.util.Map; import org.glyptodon.guacamole.net.basic.resource.Resource;
|
import java.util.*; import org.glyptodon.guacamole.net.basic.resource.*;
|
[
"java.util",
"org.glyptodon.guacamole"
] |
java.util; org.glyptodon.guacamole;
| 2,350,963
|
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof XYPlot)) {
return false;
}
XYPlot that = (XYPlot) obj;
if (this.weight != that.weight) {
return false;
}
if (this.orientation != that.orientation) {
return false;
}
if (!this.domainAxes.equals(that.domainAxes)) {
return false;
}
if (!this.domainAxisLocations.equals(that.domainAxisLocations)) {
return false;
}
if (this.rangeCrosshairLockedOnData
!= that.rangeCrosshairLockedOnData) {
return false;
}
if (this.domainGridlinesVisible != that.domainGridlinesVisible) {
return false;
}
if (this.rangeGridlinesVisible != that.rangeGridlinesVisible) {
return false;
}
if (this.domainMinorGridlinesVisible
!= that.domainMinorGridlinesVisible) {
return false;
}
if (this.rangeMinorGridlinesVisible
!= that.rangeMinorGridlinesVisible) {
return false;
}
if (this.domainZeroBaselineVisible != that.domainZeroBaselineVisible) {
return false;
}
if (this.rangeZeroBaselineVisible != that.rangeZeroBaselineVisible) {
return false;
}
if (this.domainCrosshairVisible != that.domainCrosshairVisible) {
return false;
}
if (this.domainCrosshairValue != that.domainCrosshairValue) {
return false;
}
if (this.domainCrosshairLockedOnData
!= that.domainCrosshairLockedOnData) {
return false;
}
if (this.rangeCrosshairVisible != that.rangeCrosshairVisible) {
return false;
}
if (this.rangeCrosshairValue != that.rangeCrosshairValue) {
return false;
}
if (!ObjectUtilities.equal(this.axisOffset, that.axisOffset)) {
return false;
}
if (!ObjectUtilities.equal(this.renderers, that.renderers)) {
return false;
}
if (!ObjectUtilities.equal(this.rangeAxes, that.rangeAxes)) {
return false;
}
if (!this.rangeAxisLocations.equals(that.rangeAxisLocations)) {
return false;
}
if (!ObjectUtilities.equal(this.datasetToDomainAxesMap,
that.datasetToDomainAxesMap)) {
return false;
}
if (!ObjectUtilities.equal(this.datasetToRangeAxesMap,
that.datasetToRangeAxesMap)) {
return false;
}
if (!ObjectUtilities.equal(this.domainGridlineStroke,
that.domainGridlineStroke)) {
return false;
}
if (!PaintUtilities.equal(this.domainGridlinePaint,
that.domainGridlinePaint)) {
return false;
}
if (!ObjectUtilities.equal(this.rangeGridlineStroke,
that.rangeGridlineStroke)) {
return false;
}
if (!PaintUtilities.equal(this.rangeGridlinePaint,
that.rangeGridlinePaint)) {
return false;
}
if (!ObjectUtilities.equal(this.domainMinorGridlineStroke,
that.domainMinorGridlineStroke)) {
return false;
}
if (!PaintUtilities.equal(this.domainMinorGridlinePaint,
that.domainMinorGridlinePaint)) {
return false;
}
if (!ObjectUtilities.equal(this.rangeMinorGridlineStroke,
that.rangeMinorGridlineStroke)) {
return false;
}
if (!PaintUtilities.equal(this.rangeMinorGridlinePaint,
that.rangeMinorGridlinePaint)) {
return false;
}
if (!PaintUtilities.equal(this.domainZeroBaselinePaint,
that.domainZeroBaselinePaint)) {
return false;
}
if (!ObjectUtilities.equal(this.domainZeroBaselineStroke,
that.domainZeroBaselineStroke)) {
return false;
}
if (!PaintUtilities.equal(this.rangeZeroBaselinePaint,
that.rangeZeroBaselinePaint)) {
return false;
}
if (!ObjectUtilities.equal(this.rangeZeroBaselineStroke,
that.rangeZeroBaselineStroke)) {
return false;
}
if (!ObjectUtilities.equal(this.domainCrosshairStroke,
that.domainCrosshairStroke)) {
return false;
}
if (!PaintUtilities.equal(this.domainCrosshairPaint,
that.domainCrosshairPaint)) {
return false;
}
if (!ObjectUtilities.equal(this.rangeCrosshairStroke,
that.rangeCrosshairStroke)) {
return false;
}
if (!PaintUtilities.equal(this.rangeCrosshairPaint,
that.rangeCrosshairPaint)) {
return false;
}
if (!ObjectUtilities.equal(this.foregroundDomainMarkers,
that.foregroundDomainMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.backgroundDomainMarkers,
that.backgroundDomainMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.foregroundRangeMarkers,
that.foregroundRangeMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.backgroundRangeMarkers,
that.backgroundRangeMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.foregroundDomainMarkers,
that.foregroundDomainMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.backgroundDomainMarkers,
that.backgroundDomainMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.foregroundRangeMarkers,
that.foregroundRangeMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.backgroundRangeMarkers,
that.backgroundRangeMarkers)) {
return false;
}
if (!ObjectUtilities.equal(this.annotations, that.annotations)) {
return false;
}
if (!ObjectUtilities.equal(this.fixedLegendItems,
that.fixedLegendItems)) {
return false;
}
if (!PaintUtilities.equal(this.domainTickBandPaint,
that.domainTickBandPaint)) {
return false;
}
if (!PaintUtilities.equal(this.rangeTickBandPaint,
that.rangeTickBandPaint)) {
return false;
}
if (!this.quadrantOrigin.equals(that.quadrantOrigin)) {
return false;
}
for (int i = 0; i < 4; i++) {
if (!PaintUtilities.equal(this.quadrantPaint[i],
that.quadrantPaint[i])) {
return false;
}
}
if (!ObjectUtilities.equal(this.shadowGenerator,
that.shadowGenerator)) {
return false;
}
return super.equals(obj);
}
|
boolean function(Object obj) { if (obj == this) { return true; } if (!(obj instanceof XYPlot)) { return false; } XYPlot that = (XYPlot) obj; if (this.weight != that.weight) { return false; } if (this.orientation != that.orientation) { return false; } if (!this.domainAxes.equals(that.domainAxes)) { return false; } if (!this.domainAxisLocations.equals(that.domainAxisLocations)) { return false; } if (this.rangeCrosshairLockedOnData != that.rangeCrosshairLockedOnData) { return false; } if (this.domainGridlinesVisible != that.domainGridlinesVisible) { return false; } if (this.rangeGridlinesVisible != that.rangeGridlinesVisible) { return false; } if (this.domainMinorGridlinesVisible != that.domainMinorGridlinesVisible) { return false; } if (this.rangeMinorGridlinesVisible != that.rangeMinorGridlinesVisible) { return false; } if (this.domainZeroBaselineVisible != that.domainZeroBaselineVisible) { return false; } if (this.rangeZeroBaselineVisible != that.rangeZeroBaselineVisible) { return false; } if (this.domainCrosshairVisible != that.domainCrosshairVisible) { return false; } if (this.domainCrosshairValue != that.domainCrosshairValue) { return false; } if (this.domainCrosshairLockedOnData != that.domainCrosshairLockedOnData) { return false; } if (this.rangeCrosshairVisible != that.rangeCrosshairVisible) { return false; } if (this.rangeCrosshairValue != that.rangeCrosshairValue) { return false; } if (!ObjectUtilities.equal(this.axisOffset, that.axisOffset)) { return false; } if (!ObjectUtilities.equal(this.renderers, that.renderers)) { return false; } if (!ObjectUtilities.equal(this.rangeAxes, that.rangeAxes)) { return false; } if (!this.rangeAxisLocations.equals(that.rangeAxisLocations)) { return false; } if (!ObjectUtilities.equal(this.datasetToDomainAxesMap, that.datasetToDomainAxesMap)) { return false; } if (!ObjectUtilities.equal(this.datasetToRangeAxesMap, that.datasetToRangeAxesMap)) { return false; } if (!ObjectUtilities.equal(this.domainGridlineStroke, that.domainGridlineStroke)) { return false; } if (!PaintUtilities.equal(this.domainGridlinePaint, that.domainGridlinePaint)) { return false; } if (!ObjectUtilities.equal(this.rangeGridlineStroke, that.rangeGridlineStroke)) { return false; } if (!PaintUtilities.equal(this.rangeGridlinePaint, that.rangeGridlinePaint)) { return false; } if (!ObjectUtilities.equal(this.domainMinorGridlineStroke, that.domainMinorGridlineStroke)) { return false; } if (!PaintUtilities.equal(this.domainMinorGridlinePaint, that.domainMinorGridlinePaint)) { return false; } if (!ObjectUtilities.equal(this.rangeMinorGridlineStroke, that.rangeMinorGridlineStroke)) { return false; } if (!PaintUtilities.equal(this.rangeMinorGridlinePaint, that.rangeMinorGridlinePaint)) { return false; } if (!PaintUtilities.equal(this.domainZeroBaselinePaint, that.domainZeroBaselinePaint)) { return false; } if (!ObjectUtilities.equal(this.domainZeroBaselineStroke, that.domainZeroBaselineStroke)) { return false; } if (!PaintUtilities.equal(this.rangeZeroBaselinePaint, that.rangeZeroBaselinePaint)) { return false; } if (!ObjectUtilities.equal(this.rangeZeroBaselineStroke, that.rangeZeroBaselineStroke)) { return false; } if (!ObjectUtilities.equal(this.domainCrosshairStroke, that.domainCrosshairStroke)) { return false; } if (!PaintUtilities.equal(this.domainCrosshairPaint, that.domainCrosshairPaint)) { return false; } if (!ObjectUtilities.equal(this.rangeCrosshairStroke, that.rangeCrosshairStroke)) { return false; } if (!PaintUtilities.equal(this.rangeCrosshairPaint, that.rangeCrosshairPaint)) { return false; } if (!ObjectUtilities.equal(this.foregroundDomainMarkers, that.foregroundDomainMarkers)) { return false; } if (!ObjectUtilities.equal(this.backgroundDomainMarkers, that.backgroundDomainMarkers)) { return false; } if (!ObjectUtilities.equal(this.foregroundRangeMarkers, that.foregroundRangeMarkers)) { return false; } if (!ObjectUtilities.equal(this.backgroundRangeMarkers, that.backgroundRangeMarkers)) { return false; } if (!ObjectUtilities.equal(this.foregroundDomainMarkers, that.foregroundDomainMarkers)) { return false; } if (!ObjectUtilities.equal(this.backgroundDomainMarkers, that.backgroundDomainMarkers)) { return false; } if (!ObjectUtilities.equal(this.foregroundRangeMarkers, that.foregroundRangeMarkers)) { return false; } if (!ObjectUtilities.equal(this.backgroundRangeMarkers, that.backgroundRangeMarkers)) { return false; } if (!ObjectUtilities.equal(this.annotations, that.annotations)) { return false; } if (!ObjectUtilities.equal(this.fixedLegendItems, that.fixedLegendItems)) { return false; } if (!PaintUtilities.equal(this.domainTickBandPaint, that.domainTickBandPaint)) { return false; } if (!PaintUtilities.equal(this.rangeTickBandPaint, that.rangeTickBandPaint)) { return false; } if (!this.quadrantOrigin.equals(that.quadrantOrigin)) { return false; } for (int i = 0; i < 4; i++) { if (!PaintUtilities.equal(this.quadrantPaint[i], that.quadrantPaint[i])) { return false; } } if (!ObjectUtilities.equal(this.shadowGenerator, that.shadowGenerator)) { return false; } return super.equals(obj); }
|
/**
* Tests this plot for equality with another object.
*
* @param obj the object (<code>null</code> permitted).
*
* @return <code>true</code> or <code>false</code>.
*/
|
Tests this plot for equality with another object
|
equals
|
{
"repo_name": "Epsilon2/Memetic-Algorithm-for-TSP",
"path": "jfreechart-1.0.16/source/org/jfree/chart/plot/XYPlot.java",
"license": "mit",
"size": 199979
}
|
[
"org.jfree.util.ObjectUtilities",
"org.jfree.util.PaintUtilities"
] |
import org.jfree.util.ObjectUtilities; import org.jfree.util.PaintUtilities;
|
import org.jfree.util.*;
|
[
"org.jfree.util"
] |
org.jfree.util;
| 2,198,189
|
@ServiceMethod(returns = ReturnType.SINGLE)
SyncPoller<PollResult<VirtualHubInner>, VirtualHubInner> beginCreateOrUpdate(
String resourceGroupName, String virtualHubName, VirtualHubInner virtualHubParameters);
|
@ServiceMethod(returns = ReturnType.SINGLE) SyncPoller<PollResult<VirtualHubInner>, VirtualHubInner> beginCreateOrUpdate( String resourceGroupName, String virtualHubName, VirtualHubInner virtualHubParameters);
|
/**
* Creates a VirtualHub resource if it doesn't exist else updates the existing VirtualHub.
*
* @param resourceGroupName The resource group name of the VirtualHub.
* @param virtualHubName The name of the VirtualHub.
* @param virtualHubParameters VirtualHub Resource.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return virtualHub Resource.
*/
|
Creates a VirtualHub resource if it doesn't exist else updates the existing VirtualHub
|
beginCreateOrUpdate
|
{
"repo_name": "selvasingh/azure-sdk-for-java",
"path": "sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/VirtualHubsClient.java",
"license": "mit",
"size": 30840
}
|
[
"com.azure.core.annotation.ReturnType",
"com.azure.core.annotation.ServiceMethod",
"com.azure.core.management.polling.PollResult",
"com.azure.core.util.polling.SyncPoller",
"com.azure.resourcemanager.network.fluent.models.VirtualHubInner"
] |
import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; import com.azure.core.management.polling.PollResult; import com.azure.core.util.polling.SyncPoller; import com.azure.resourcemanager.network.fluent.models.VirtualHubInner;
|
import com.azure.core.annotation.*; import com.azure.core.management.polling.*; import com.azure.core.util.polling.*; import com.azure.resourcemanager.network.fluent.models.*;
|
[
"com.azure.core",
"com.azure.resourcemanager"
] |
com.azure.core; com.azure.resourcemanager;
| 1,573,394
|
protected void enterNullType(Production node)
throws ParseException {
}
|
void function(Production node) throws ParseException { }
|
/**
* Called when entering a parse tree node.
*
* @param node the node being entered
*
* @throws ParseException if the node analysis discovered errors
*/
|
Called when entering a parse tree node
|
enterNullType
|
{
"repo_name": "richb-hanover/mibble-2.9.2",
"path": "src/java/net/percederberg/mibble/asn1/Asn1Analyzer.java",
"license": "gpl-2.0",
"size": 275483
}
|
[
"net.percederberg.grammatica.parser.ParseException",
"net.percederberg.grammatica.parser.Production"
] |
import net.percederberg.grammatica.parser.ParseException; import net.percederberg.grammatica.parser.Production;
|
import net.percederberg.grammatica.parser.*;
|
[
"net.percederberg.grammatica"
] |
net.percederberg.grammatica;
| 447,576
|
@Test
public void testFatalErrorIfRecoveredJobsCannotBeStarted() throws Exception {
final FlinkException testException = new FlinkException("Test exception");
final JobGraph failingJobGraph = createFailingJobGraph(testException);
dispatcher = new TestingDispatcherBuilder()
.setDispatcherBootstrap(new DefaultDispatcherBootstrap(Collections.singleton(failingJobGraph)))
.build();
dispatcher.start();
final TestingFatalErrorHandler fatalErrorHandler = testingFatalErrorHandlerResource.getFatalErrorHandler();
final Throwable error = fatalErrorHandler.getErrorFuture().get(TIMEOUT.toMilliseconds(), TimeUnit.MILLISECONDS);
assertThat(ExceptionUtils.findThrowableWithMessage(error, testException.getMessage()).isPresent(), is(true));
fatalErrorHandler.clearError();
}
|
void function() throws Exception { final FlinkException testException = new FlinkException(STR); final JobGraph failingJobGraph = createFailingJobGraph(testException); dispatcher = new TestingDispatcherBuilder() .setDispatcherBootstrap(new DefaultDispatcherBootstrap(Collections.singleton(failingJobGraph))) .build(); dispatcher.start(); final TestingFatalErrorHandler fatalErrorHandler = testingFatalErrorHandlerResource.getFatalErrorHandler(); final Throwable error = fatalErrorHandler.getErrorFuture().get(TIMEOUT.toMilliseconds(), TimeUnit.MILLISECONDS); assertThat(ExceptionUtils.findThrowableWithMessage(error, testException.getMessage()).isPresent(), is(true)); fatalErrorHandler.clearError(); }
|
/**
* Tests that the {@link Dispatcher} fails fatally if the recovered jobs cannot be started.
* See FLINK-9097.
*/
|
Tests that the <code>Dispatcher</code> fails fatally if the recovered jobs cannot be started. See FLINK-9097
|
testFatalErrorIfRecoveredJobsCannotBeStarted
|
{
"repo_name": "darionyaphet/flink",
"path": "flink-runtime/src/test/java/org/apache/flink/runtime/dispatcher/DispatcherTest.java",
"license": "apache-2.0",
"size": 34410
}
|
[
"java.util.Collections",
"java.util.concurrent.TimeUnit",
"org.apache.flink.runtime.jobgraph.JobGraph",
"org.apache.flink.runtime.util.TestingFatalErrorHandler",
"org.apache.flink.util.ExceptionUtils",
"org.apache.flink.util.FlinkException",
"org.hamcrest.core.Is",
"org.junit.Assert"
] |
import java.util.Collections; import java.util.concurrent.TimeUnit; import org.apache.flink.runtime.jobgraph.JobGraph; import org.apache.flink.runtime.util.TestingFatalErrorHandler; import org.apache.flink.util.ExceptionUtils; import org.apache.flink.util.FlinkException; import org.hamcrest.core.Is; import org.junit.Assert;
|
import java.util.*; import java.util.concurrent.*; import org.apache.flink.runtime.jobgraph.*; import org.apache.flink.runtime.util.*; import org.apache.flink.util.*; import org.hamcrest.core.*; import org.junit.*;
|
[
"java.util",
"org.apache.flink",
"org.hamcrest.core",
"org.junit"
] |
java.util; org.apache.flink; org.hamcrest.core; org.junit;
| 1,498,126
|
public boolean isDateAroundHalloween(Calendar calendarIn)
{
return calendarIn.get(2) + 1 == 10 && calendarIn.get(5) >= 20 || calendarIn.get(2) + 1 == 11 && calendarIn.get(5) <= 3;
}
|
boolean function(Calendar calendarIn) { return calendarIn.get(2) + 1 == 10 && calendarIn.get(5) >= 20 calendarIn.get(2) + 1 == 11 && calendarIn.get(5) <= 3; }
|
/**
* Check if October 31st is within 20 days before and 3 days after.
*/
|
Check if October 31st is within 20 days before and 3 days after
|
isDateAroundHalloween
|
{
"repo_name": "Weisses/Ebonheart-Mods",
"path": "ViesCraft/1.10.2 - 2185/src/main/java/com/viesis/viescraft/api/References.java",
"license": "mit",
"size": 7186
}
|
[
"java.util.Calendar"
] |
import java.util.Calendar;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 2,030,103
|
default CompletableFuture<OperationResult<String>> getTriggeredSavepointStatus(
AsynchronousJobOperationKey operationKey) {
throw new UnsupportedOperationException();
}
|
default CompletableFuture<OperationResult<String>> getTriggeredSavepointStatus( AsynchronousJobOperationKey operationKey) { throw new UnsupportedOperationException(); }
|
/**
* Get the status of of savepoint triggered under the specified operation key.
*
* @param operationKey key of the operation
* @return Future which completes immediately with the status, or fails if no operation is
* registered for the key
*/
|
Get the status of of savepoint triggered under the specified operation key
|
getTriggeredSavepointStatus
|
{
"repo_name": "godfreyhe/flink",
"path": "flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/RestfulGateway.java",
"license": "apache-2.0",
"size": 10566
}
|
[
"java.util.concurrent.CompletableFuture",
"org.apache.flink.runtime.rest.handler.async.OperationResult",
"org.apache.flink.runtime.rest.handler.job.AsynchronousJobOperationKey"
] |
import java.util.concurrent.CompletableFuture; import org.apache.flink.runtime.rest.handler.async.OperationResult; import org.apache.flink.runtime.rest.handler.job.AsynchronousJobOperationKey;
|
import java.util.concurrent.*; import org.apache.flink.runtime.rest.handler.async.*; import org.apache.flink.runtime.rest.handler.job.*;
|
[
"java.util",
"org.apache.flink"
] |
java.util; org.apache.flink;
| 1,838,513
|
public void close()
throws IOException
{
// Nothing to do here.
super.close();
}
|
void function() throws IOException { super.close(); }
|
/**
* Closes the input stream.
*
* @throws IOException if an error occurs during an I/O operation.
*/
|
Closes the input stream
|
close
|
{
"repo_name": "arcao/handygeocaching",
"path": "src/gnu/classpath/util/zip/GZIPInputStream.java",
"license": "gpl-2.0",
"size": 10109
}
|
[
"java.io.IOException"
] |
import java.io.IOException;
|
import java.io.*;
|
[
"java.io"
] |
java.io;
| 2,344,913
|
public static JmsComponent jmsComponentAutoAcknowledge(ConnectionFactory connectionFactory) {
JmsConfiguration template = new JmsConfiguration(connectionFactory);
template.setAcknowledgementMode(Session.AUTO_ACKNOWLEDGE);
return jmsComponent(template);
}
|
static JmsComponent function(ConnectionFactory connectionFactory) { JmsConfiguration template = new JmsConfiguration(connectionFactory); template.setAcknowledgementMode(Session.AUTO_ACKNOWLEDGE); return jmsComponent(template); }
|
/**
* Static builder method
*/
|
Static builder method
|
jmsComponentAutoAcknowledge
|
{
"repo_name": "veithen/camel",
"path": "components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsComponent.java",
"license": "apache-2.0",
"size": 74797
}
|
[
"javax.jms.ConnectionFactory",
"javax.jms.Session"
] |
import javax.jms.ConnectionFactory; import javax.jms.Session;
|
import javax.jms.*;
|
[
"javax.jms"
] |
javax.jms;
| 1,574,796
|
public Object clone() throws CloneNotSupportedException {
DefaultXYDataset clone = (DefaultXYDataset) super.clone();
clone.seriesKeys = new java.util.ArrayList(this.seriesKeys);
clone.seriesList = new ArrayList(this.seriesList.size());
for (int i = 0; i < this.seriesList.size(); i++) {
double[][] data = (double[][]) this.seriesList.get(i);
double[] x = data[0];
double[] y = data[1];
double[] xx = new double[x.length];
double[] yy = new double[y.length];
System.arraycopy(x, 0, xx, 0, x.length);
System.arraycopy(y, 0, yy, 0, y.length);
clone.seriesList.add(i, new double[][] {xx, yy});
}
return clone;
}
|
Object function() throws CloneNotSupportedException { DefaultXYDataset clone = (DefaultXYDataset) super.clone(); clone.seriesKeys = new java.util.ArrayList(this.seriesKeys); clone.seriesList = new ArrayList(this.seriesList.size()); for (int i = 0; i < this.seriesList.size(); i++) { double[][] data = (double[][]) this.seriesList.get(i); double[] x = data[0]; double[] y = data[1]; double[] xx = new double[x.length]; double[] yy = new double[y.length]; System.arraycopy(x, 0, xx, 0, x.length); System.arraycopy(y, 0, yy, 0, y.length); clone.seriesList.add(i, new double[][] {xx, yy}); } return clone; }
|
/**
* Creates an independent copy of this dataset.
*
* @return The cloned dataset.
*
* @throws CloneNotSupportedException if there is a problem cloning the
* dataset (for instance, if a non-cloneable object is used for a
* series key).
*/
|
Creates an independent copy of this dataset
|
clone
|
{
"repo_name": "djun100/afreechart",
"path": "src/org/afree/data/xy/DefaultXYDataset.java",
"license": "lgpl-3.0",
"size": 13490
}
|
[
"java.util.ArrayList"
] |
import java.util.ArrayList;
|
import java.util.*;
|
[
"java.util"
] |
java.util;
| 20,185
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.