blob: 5636628d2a056cc003ac3ada211d2741d4d0c226 [file] [log] [blame]
/*
-----------------------------------------------------------------------
-- CHESS core plugin --
-- --
-- Copyright (C) 2011-2012 --
-- University of Padova, ITALY --
-- --
-- Author: Alessandro Zovi azovi@math.unipd.it --
-- --
-- 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-v20.html --
-----------------------------------------------------------------------
*/
package org.polarsys.chess.core.internal.views;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.polarsys.chess.core.util.CHESSProjectSupport;
/**
* The Class ReloadXMLPermissions.
*/
public class ReloadXMLPermissions extends AbstractHandler {
/* (non-Javadoc)
* @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
@Override
public Object execute(ExecutionEvent event)
throws org.eclipse.core.commands.ExecutionException {
CHESSProjectSupport.printlnToCHESSConsole("Load permissions...");
ViewPermissions.initializeLists();
ViewPermissions.readXMLPermissions();
CHESSProjectSupport.printlnToCHESSConsole("Permissions loaded.");
return null;
}
}