Examples of ICMultiConfigDescription


Examples of org.eclipse.cdt.core.settings.model.ICMultiConfigDescription

    private void saveAllSelections() {
  if (page != null) {
      ICConfigurationDescription confdesc = getResDesc().getConfiguration();
      if (confdesc instanceof ICMultiConfigDescription) {
    ICMultiConfigDescription multiConfDesc = (ICMultiConfigDescription) confdesc;
    ICConfigurationDescription confdescs[] = (ICConfigurationDescription[]) multiConfDesc.getItems();
    for (int curdesc = 0; curdesc < confdescs.length; curdesc++) {
        saveAllSelections(confdescs[curdesc]);
    }
      } else {
    saveAllSelections(confdesc);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.