File: Database.java

package info (click to toggle)
pilot-link 0.8.11-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,604 kB
  • ctags: 3,302
  • sloc: ansic: 25,154; java: 2,162; cpp: 1,641; sh: 1,629; makefile: 1,525; perl: 723; yacc: 660; python: 267; tcl: 14
file content (15 lines) | stat: -rw-r--r-- 635 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

package Pdapilot.memo;

public class Database extends Pdapilot.Database {
	public Pdapilot.AppBlock newAppBlock() { return new Pdapilot.memo.AppBlock(); }
	public Pdapilot.AppBlock newAppBlock(byte[] contents) { return new Pdapilot.memo.AppBlock(contents); }
	
	public Pdapilot.Record newRecord() { return new Pdapilot.memo.Record(); }
	public Pdapilot.Record newRecord(byte[] contents, Pdapilot.RecordID id, int index, int attr, int cat) 
		{ return new Pdapilot.memo.Record(contents, id, index, attr, cat); }
		
	public Pdapilot.Char4 creator() { return new Pdapilot.Char4("memo"); }
	public String dbname() { return "MemoDB"; }
	
}