14 lines
353 B
Python
14 lines
353 B
Python
# -*- coding: utf-8 -*-
|
|
import velamentum.dateien.Datei
|
|
from velamentum.android import *
|
|
|
|
class System(object):
|
|
"""Die Klasse System dient dem Zugriff auf bestimmte Funktionen des Systems.
|
|
|
|
Attribute:
|
|
--- keine ---
|
|
"""
|
|
@staticmethod
|
|
def oeffneDatei(pDatei):
|
|
androide.view("file://" + pDatei.nennePfad())
|
|
|