Definition of Push down

Babylon English Dictionary
press downward
Search Dictionary
Push down Definition from Language, Idioms & Slang Dictionaries & Glossaries
hEnglish - advanced version

push down
v : cause to come or go down; "the policeman downed the heavily armed suspect"; "the mugger knocked down the old lady after she refused to hand over her wallet" [syn: down, knock down, cut down, pull down]



WordNet 2.0

Verb
1. cause to come or go down; "The policeman downed the heavily armed suspect"; "The mugger knocked down the old lady after she refused to hand over her wallet"
(synonym) down, knock down, cut down, pull down
(hypernym) strike
(hyponym) submarine
Push down Definition from Encyclopedia Dictionaries & Glossaries
Wikipedia English - The Free Encyclopedia
In software engineering, Push Down refactoring involves moving a method from a superclass into a subclass. Compare the following Java classes before and after the Push Down refactor is applied:
   public class SuperClass{
       void methodA() {
           //do something        
       }
   
       void methodB() {
           //do something else
       }
   }
   
   public class SubClass extends SuperClass {
       void methodC() {
           //do something
       }
   }

See more at Wikipedia.org...
© This article uses material from Wikipedia® and is licensed under the GNU Free Documentation License and under the Creative Commons Attribution-ShareAlike License