Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1e86828d89bcd8416b5cdea7efd66d1af92bc682 (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.eclipse.ecf.remoteserviceadmin.ui.service.model;

public class RegisteringBundleIdNode extends BundleIdNode {

	public RegisteringBundleIdNode(long bundleId) {
		super(bundleId);
	}

}

Back to the top