KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > directory > ldapstudio > schemas > view > views > SchemaSourceViewer


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  *
19  */

20 package org.apache.directory.ldapstudio.schemas.view.views;
21
22
23 import org.eclipse.jface.text.source.IOverviewRuler;
24 import org.eclipse.jface.text.source.IVerticalRuler;
25 import org.eclipse.jface.text.source.SourceViewer;
26 import org.eclipse.swt.widgets.Composite;
27
28
29 /**
30  * Implementation of a SourceViewer for displaying Schema files source code.
31  *
32  * @author <a HREF="mailto:dev@directory.apache.org">Apache Directory Project</a>
33  * @version $Rev$, $Date$
34  */

35 public class SchemaSourceViewer extends SourceViewer
36 {
37     /**
38      * Creates a new instance of SchemaSourceViewer.
39      *
40      * @param parent
41      * the parent of the viewer's control
42      * @param verticalRuler
43      * the vertical ruler used by this source viewer
44      * @param overviewRuler
45      * the overview ruler
46      * @param showAnnotationsOverview
47      * true if the overview ruler should be visible, false otherwise
48      * @param styles
49      * the SWT style bits
50      */

51     public SchemaSourceViewer( Composite parent, IVerticalRuler verticalRuler, IOverviewRuler overviewRuler,
52         boolean showAnnotationsOverview, int styles )
53     {
54         super( parent, verticalRuler, overviewRuler, showAnnotationsOverview, styles );
55         this.configure( new SchemaSourceViewerConfiguration() );
56     }
57
58
59     /**
60      * Creates a new instance of SchemaSourceViewer.
61      *
62      * @param parent
63      * the parent of the viewer's control
64      * @param ruler
65      * the vertical ruler used by this source viewer
66      * @param styles
67      * the SWT style bits
68      */

69     public SchemaSourceViewer( Composite parent, IVerticalRuler ruler, int styles )
70     {
71         super( parent, ruler, styles );
72         this.configure( new SchemaSourceViewerConfiguration() );
73     }
74 }
75
Popular Tags