View | Details | Raw Unified | Return to bug 272416 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/internal/ui/workingsets/WorkingSetProjectConfiguration.java (-1 / +5 lines)
Lines 92-98 Link Here
92
		return selectedConfiguration;
92
		return selectedConfiguration;
93
	}
93
	}
94
94
95
	public void setSelectedConfigurationID(String id) {
95
	protected void setSelectedConfigurationID(String id) {
96
		this.selectedConfiguration = id;
96
		this.selectedConfiguration = id;
97
	}
97
	}
98
98
Lines 265-270 Link Here
265
			return resolveProject().getName();
265
			return resolveProject().getName();
266
		}
266
		}
267
267
268
		public void setSelectedConfigurationID(String id) {
269
			super.setSelectedConfigurationID(id);
270
		}
271
268
		@Override
272
		@Override
269
		public boolean isActive() {
273
		public boolean isActive() {
270
			return workspace.isActive(this);
274
			return workspace.isActive(this);
(-)src/org/eclipse/cdt/internal/ui/workingsets/IWorkingSetProjectConfiguration.java (-8 / +8 lines)
Lines 67-80 Link Here
67
	String getSelectedConfigurationID();
67
	String getSelectedConfigurationID();
68
68
69
	/**
69
	/**
70
	 * Sets the ID of the build configuration that is currently selected for my project.
71
	 * 
72
	 * @param id
73
	 *            my selected build configuration ID
74
	 */
75
	void setSelectedConfigurationID(String id);
76
77
	/**
78
	 * <p>
70
	 * <p>
79
	 * Resolves my selected configuration reference to the C model's description handle for it.
71
	 * Resolves my selected configuration reference to the C model's description handle for it.
80
	 * </p>
72
	 * </p>
Lines 166-170 Link Here
166
	 */
158
	 */
167
	interface ISnapshot extends IWorkingSetProjectConfiguration, IWorkingSetConfigurationElement.ISnapshot {
159
	interface ISnapshot extends IWorkingSetProjectConfiguration, IWorkingSetConfigurationElement.ISnapshot {
168
		IWorkingSetConfiguration.ISnapshot getWorkingSetConfiguration();
160
		IWorkingSetConfiguration.ISnapshot getWorkingSetConfiguration();
161
162
		/**
163
		 * Sets the ID of the build configuration that is currently selected for my project.
164
		 * 
165
		 * @param id
166
		 *            my selected build configuration ID
167
		 */
168
		void setSelectedConfigurationID(String id);
169
	}
169
	}
170
}
170
}

Return to bug 272416