blob: 7b60ef3284942ed77e048950600bf1eb1723cd77 [file] [log] [blame]
/**
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.xtend.lib.annotations;
import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
/**
* @since 2.7
* @noreference
*/
@Beta
@GwtCompatible
@SuppressWarnings("all")
public enum AccessorType {
PUBLIC_GETTER,
PROTECTED_GETTER,
PACKAGE_GETTER,
PRIVATE_GETTER,
PUBLIC_SETTER,
PROTECTED_SETTER,
PACKAGE_SETTER,
PRIVATE_SETTER,
NONE;
}