blob: b9218f21bb788f48c89249a7084c8187342348d7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Ecliptical Software Inc. 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:
* Ecliptical Software Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.ds.internal.annotations;
import org.eclipse.jdt.core.dom.ITypeBinding;
public class FieldCollectionTypeDescriptor {
private final ITypeBinding elementType;
private final boolean exact;
public FieldCollectionTypeDescriptor(ITypeBinding elementType, boolean exact) {
this.elementType = elementType;
this.exact = exact;
}
public ITypeBinding getElementType() {
return elementType;
}
public boolean isExact() {
return exact;
}
}