Private static properties with public static getters/setters

how bad is this practice? :smiley:
I am having trouble getting to some stuff so i am taking the easy way out :stuck_out_tongue:

private static var _interrupted:Boolean;        

public static function setInterrupted(value:Boolean):void{
        
      _interrupted = value;
             
}