root/LW/LWFormPassword.lua

Revision 815 (checked in by rsz, 3 years ago)

cleanup

Line 
1 --------------------------------------------------------------------------------
2 -- Title:               LWFormPassword.lua
3 -- Description:         Like a square peg in a round hole
4 -- Author:              Raphaël Szwarc http://alt.textdrive.com/lua/
5 -- Creation Date:       February 1, 2005
6 -- Legal:               Copyright (C) 2005 Raphaël Szwarc
7 --------------------------------------------------------------------------------
8
9 -- import dependencies
10 local LWFormText = require( "LWFormText" )
11
12 -- define the class
13 local super = LWFormText
14 local self = super()
15
16 function self:type()
17         return "password"
18 end
19
20 return self
Note: See TracBrowser for help on using the browser.