sugar-toolkit-gtk3/shell/model/devices/network/wired.py

29 lines
1.0 KiB
Python
Raw Normal View History

2007-06-24 15:01:30 +02:00
# Copyright (C) 2006-2007, Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from model.devices import device
class Device(device.Device):
2007-02-25 02:00:40 +01:00
def __init__(self, nm_device):
device.Device.__init__(self)
2007-02-25 02:00:40 +01:00
self._nm_device = device
2007-02-25 12:36:44 +01:00
def get_id(self):
2007-04-05 05:48:09 +02:00
return str(self._nm_device.get_op())
2007-02-25 12:36:44 +01:00
def get_type(self):
2007-03-15 21:37:15 +01:00
return 'network.wired'