Subversion Repository Public Repository

litesoft

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
package org.litesoft.language.server;

import java.io.*;

import org.litesoft.core.annotations.*;

/**
 *
 */
public class TextFileAccessorImpl implements TextFileAccessor
{

    @Override
    public String[] read()
            throws FileNotFoundException, IOException
    {
        //todo: use text file utils : ask gs
        return new String[0];
    }

    @Override
    public void write( @NotNull String[] pLines )
            throws IOException
    {
        //todo: use text file utils : ask gs
    }

    public TextFileAccessorImpl( File pFile )
    {

    }
}

Commits for litesoft/trunk/DeviceDesktopTest/src/org/litesoft/language/server/TextFileAccessorImpl.java

Diff revisions: vs.
Revision Author Commited Message
937 markcmarkc Mon 02 Jun, 2014 00:08:18 +0000

Added property file loading for master unvalidated accessor