blob: 11c12a0314bf06de7e221a481bac5e0aca6148e7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.html.ui.internal.contentproperties.ui;
/**
* @deprecated Not needed. See BUG118359
*/
public class AbstractDeviceProfileEntry implements DeviceProfileEntry {
public AbstractDeviceProfileEntry() {
super();
}
public String getEntryId() {
return null;
}
public String getEntryName() {
return null;
}
public void release() {
}
}