Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4fbd46fd7b49553c78ac9d2687d20e4432a9f836 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2008 THALES GLOBAL SERVICES.
 * 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:
 *    Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.sirius.business.internal.session;

import java.util.Collection;

import org.eclipse.emf.ecore.EObject;

import org.eclipse.sirius.business.api.session.SessionService;

/**
 * Session services.
 * 
 * @author cbrun
 * 
 */
public class SessionServiceImpl implements SessionService {

    /**
     * {@inheritDoc}
     * 
     * @see org.eclipse.sirius.business.api.session.SessionService#clearCustomData(java.lang.String,
     *      org.eclipse.emf.ecore.EObject)
     */
    public void clearCustomData(final String key, final EObject associatedInstance) {
        // TODO Auto-generated method stub

    }

    /**
     * {@inheritDoc}
     * 
     * @see org.eclipse.sirius.business.api.session.SessionService#clearCustomData(org.eclipse.emf.ecore.EObject)
     */
    public void clearCustomData(final EObject associatedInstance) {
        // TODO Auto-generated method stub

    }

    /**
     * {@inheritDoc}
     * 
     * @see org.eclipse.sirius.business.api.session.SessionService#getCustomData(java.lang.String,
     *      org.eclipse.emf.ecore.EObject)
     */
    public Collection<EObject> getCustomData(final String key, final EObject associatedInstance) {
        // TODO Auto-generated method stub
        return null;
    }

    /**
     * {@inheritDoc}
     * 
     * @see org.eclipse.sirius.business.api.session.SessionService#putCustomData(java.lang.String,
     *      org.eclipse.emf.ecore.EObject, org.eclipse.emf.ecore.EObject)
     */
    public void putCustomData(final String key, final EObject associatedInstance, final EObject data) {
        // TODO Auto-generated method stub

    }

}

Back to the top