blob: 97e5e55905690e9d4a82feeafebd01ca36d14110 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 University of Illinois 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:
* Albert L. Rossi - design and implementation
******************************************************************************/
package org.eclipse.ptp.rm.jaxb.core.rm;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.ptp.rmsystem.AbstractResourceManagerMonitor;
import org.eclipse.ptp.rmsystem.IResourceManagerConfiguration;
public class JAXBResourceManagerMonitor extends AbstractResourceManagerMonitor {
public JAXBResourceManagerMonitor(IResourceManagerConfiguration config) {
super(config);
}
@Override
protected void doDispose() {
// TODO Auto-generated method stub
}
@Override
protected void doShutdown() throws CoreException {
// TODO Auto-generated method stub
}
@Override
protected void doStartup(IProgressMonitor monitor) throws CoreException {
// TODO Auto-generated method stub
}
}