Package org.eclipse.cdt.core.settings.model

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

Related Classes of org.eclipse.cdt.core.settings.model.ICMultiConfigDescription

Copyright © 2018 www.massapicom. 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.