Skip to main content
summaryrefslogblamecommitdiffstats
blob: 1cac6c8c41b271507106b9c4cf1279a52ad9e450 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
   
                                                                       










                                                                        






                                              
                                                                      




                                                                                                       
                                             
 
                                             








                                                                                          
                                                



                    
                                                



                    
/**
 * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) 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:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.common.util;

import org.eclipse.emf.cdo.common.CDOCommonRepository;

import org.eclipse.net4j.util.event.Event;
import org.eclipse.net4j.util.event.INotifier;

/**
 * @author Eike Stepper
 * @since 3.0
 * @noextend This interface is not intended to be extended by clients.
 */
public class RepositoryStateChangedEvent extends Event implements CDOCommonRepository.StateChangedEvent
{
  private static final long serialVersionUID = 1L;

  private CDOCommonRepository.State oldState;

  private CDOCommonRepository.State newState;

  public RepositoryStateChangedEvent(INotifier source, CDOCommonRepository.State oldState,
      CDOCommonRepository.State newState)
  {
    super(source);
    this.oldState = oldState;
    this.newState = newState;
  }

  public CDOCommonRepository.State getOldState()
  {
    return oldState;
  }

  public CDOCommonRepository.State getNewState()
  {
    return newState;
  }
}

Back to the top