Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 0b1cd614c1f8c032be8a03a699fbcd41f221c627 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                







                                                                                

                                                      
                                                                   

                                            
                                                                               
 

                                                                               

         
/*******************************************************************************
 * Copyright (c) 2010, 2011 Oracle. 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:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.jpa.core.internal.context.orm;

import org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyNamedColumn;

public class OrmNamedColumnTextRangeResolver
	extends AbstractOrmNamedColumnTextRangeResolver<OrmReadOnlyNamedColumn>
{
	public OrmNamedColumnTextRangeResolver(OrmReadOnlyNamedColumn column) {
		super(column);
	}
}

Back to the top