-------------------------------------------------------------------------------- -- Title: LWFormPassword.lua -- Description: Like a square peg in a round hole -- Author: Raphaël Szwarc http://alt.textdrive.com/lua/ -- Creation Date: February 1, 2005 -- Legal: Copyright (C) 2005 Raphaël Szwarc -------------------------------------------------------------------------------- -- import dependencies local LWFormText = require( "LWFormText" ) -- define the class local super = LWFormText local self = super() function self:type() return "password" end return self