blob: 8647b6b18a4a51b708784cf337e8a1de5bb65899 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wtp.releng.tools.component.adopters;
public class Ref
{
private int refCount;
public Ref()
{
refCount = 0;
}
public int getRefCount()
{
return refCount;
}
public void setRefCount(int refCount)
{
this.refCount = refCount;
}
public void incRefCount()
{
this.refCount++;
}
}