~ricotz/valide/valide-svgicons

« back to all changes in this revision

Viewing changes to plugins/completion/afrodite-provider/afrodite/ellipsistype.vala

  • Committer: gege2061
  • Date: 2010-09-03 21:40:48 UTC
  • Revision ID: svn-v4:35bcdfa6-b98f-11dd-bba1-afcbec1a1e1f:trunk:687
Use Afrodite for completion

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ellipsis.vala
 
2
 *
 
3
 * Copyright (C) 2009  Andrea Del Signore
 
4
 *
 
5
 * This library is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU Lesser General Public License as published by
 
7
 * the Free Software Foundation, either version 2.1 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 * Author:
 
19
 *      Andrea Del Signore <sejerpz@tin.it>
 
20
 */
 
21
 
 
22
using GLib;
 
23
using Vala;
 
24
 
 
25
namespace Afrodite
 
26
{
 
27
        public class EllipsisType : DataType
 
28
        {
 
29
                public EllipsisType ()
 
30
                {
 
31
                        base ("...");
 
32
                        base.is_ellipsis = true;        
 
33
                }
 
34
        }
 
35
}