Community
Participate
Working Groups
/*******************************************************************************
* Copyright (c) 2005, 2011 IBM Corporation and others.
* Copyright (c) 2005, 2012 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
return this.extendedContext.getVisibleMethods();
}
/**
* Return the assist scope for the current completion context.
*
* @return assist scope for the current completion context, or null if the extendedContext is null.
* @exception UnsupportedOperationException if the context is not an extended context
* @see #isExtended()
*/
public Scope getAssistScope() {
if (!this.isExtended) throw new UnsupportedOperationException("Operation only supported in extended context"); //$NON-NLS-1$
if (this.extendedContext == null) return null;
return this.extendedContext.getAssistScope();
* Copyright (c) 2008, 2011 IBM Corporation and others.
* Copyright (c) 2008, 2012 IBM Corporation and others.
return this.visibleMethods;
return this.assistScope;