16 lines
433 B
Python
16 lines
433 B
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2015, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
"""Base class for Object Nodes on the browser treeview"""
|
|
|
|
def get_name():
|
|
"""Returns the object's name"""
|
|
return ""
|
|
|